diff options
author | Araq <rumpf_a@web.de> | 2014-02-18 09:57:59 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-02-18 09:57:59 +0100 |
commit | ab72377ce64cf2b563ea90204925b793082971cb (patch) | |
tree | 5237fb7255660ed3d7761cd56ad6715de1adb30c /doc/manual.txt | |
parent | 15953dfed952cf2a54f6466b335abcbf676de141 (diff) | |
download | Nim-ab72377ce64cf2b563ea90204925b793082971cb.tar.gz |
renamed noStackFrame to asmNoStackFrame
Diffstat (limited to 'doc/manual.txt')
-rw-r--r-- | doc/manual.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 53817c508..f3602dc58 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -4893,16 +4893,16 @@ field which is used for runtime type identification is omitted. This is necessary for binary compatibility with other compiled languages. -NoStackFrame pragma -------------------- -A proc can be marked with the `noStackFrame`:idx: pragma to tell the compiler +AsmNoStackFrame pragma +---------------------- +A proc can be marked with the `AsmNoStackFrame`: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 and the generated C function is declared as ``__declspec(naked)`` or ``__attribute__((naked))`` (depending on the used C compiler). -**Note**: This pragma should only be used by procs which consist solely of assembler -statements. +**Note**: This pragma should only be used by procs which consist solely of +assembler statements. error pragma ------------ |