summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/manual.txt b/doc/manual.txt
index 905b80a18..29b51321e 100644
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -4671,8 +4671,10 @@ NoStackFrame pragma
 -------------------
 A proc can be marked with the `noStackFrame`:idx: pragma to tell the compiler
 it should not generate a stack frame for the proc. There are also no exit
-statements like ``return result;`` generated. This is useful for procs that 
-only consist of an assembler statement.
+statements like ``return result;`` generated and the generated C function is
+declared as ``__declspec(naked)`` or ``__attribute__((naked))`` (depending on
+the used C compiler). This is useful for procs that only consist of an
+assembler statement.
 
 
 error pragma
;id=f41bd71e6152174c3b0819c7549fa431e8a01222'>f41bd71e6 ^
0e7f2ca3f ^
5eea125ba ^
f41bd71e6 ^


1
2
3
4
5
6
7
8
9
10
11
12
13