diff options
author | Araq <rumpf_a@web.de> | 2011-08-20 01:01:46 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-08-20 01:01:46 +0200 |
commit | dd190a5c01ed904d844584074f729ee9cd677a3e (patch) | |
tree | 8b942abeda654d4fad2ca476fbb7d78e140012b6 /tests/accept | |
parent | d560e84fcc1171164073a31797649c26a54b03e1 (diff) | |
download | Nim-dd190a5c01ed904d844584074f729ee9cd677a3e.tar.gz |
more occurences of 'pure' proc pragma fixed
Diffstat (limited to 'tests/accept')
-rwxr-xr-x | tests/accept/run/temit.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/accept/run/temit.nim b/tests/accept/run/temit.nim index cb7d513bd..460bc3443 100755 --- a/tests/accept/run/temit.nim +++ b/tests/accept/run/temit.nim @@ -9,7 +9,7 @@ static int cvariable = 420; """.} -proc embedsC() {.pure.} = +proc embedsC() {.noStackFrame.} = var nimrodVar = 89 {.emit: """fprintf(stdout, "%d\n", cvariable + (int)`nimrodVar`);""".} |