diff options
author | EXetoC <exetoc@gmail.com> | 2014-05-04 16:07:37 +0200 |
---|---|---|
committer | EXetoC <exetoc@gmail.com> | 2014-05-04 16:07:37 +0200 |
commit | 8d19b099595561d42bf1206c5488cfeaa08ebadb (patch) | |
tree | afb294e6479570a2dcd5305ace99a15b08af1381 /doc/nimrodc.txt | |
parent | 05712fe8053420ecf481757e529a7ef2f32fb75c (diff) | |
download | Nim-8d19b099595561d42bf1206c5488cfeaa08ebadb.tar.gz |
noStackFrame -> asmNoStackFrame
Diffstat (limited to 'doc/nimrodc.txt')
-rw-r--r-- | doc/nimrodc.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/nimrodc.txt b/doc/nimrodc.txt index 52e0a6eaf..bde950982 100644 --- a/doc/nimrodc.txt +++ b/doc/nimrodc.txt @@ -360,7 +360,7 @@ Example: static int cvariable = 420; """.} - proc embedsC() {.noStackFrame.} = + proc embedsC() {.asmNoStackFrame.} = var nimrodVar = 89 # use backticks to access Nimrod symbols within an emit section: {.emit: """fprintf(stdout, "%d\n", cvariable + (int)`nimrodVar`);""".} |