diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2013-10-19 21:01:32 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2013-10-19 21:01:32 +0100 |
commit | 199c4d21bdb75f9faa63c3e470ac69559c14e411 (patch) | |
tree | e3175b205c4444a8c628bf79a4d07446be85c88d /lib | |
parent | eb4f01223988961e34f2ec1201c2d8e7a3c00de7 (diff) | |
download | Nim-199c4d21bdb75f9faa63c3e470ac69559c14e411.tar.gz |
Fixed regression on ARM caused by the changed behaviour of noStackFrame in commit ac474a28120.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index 174912519..d29479184 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1791,7 +1791,7 @@ when defined(JS): elif hostOS != "standalone": {.push stack_trace:off, profiler:off.} - proc add*(x: var string, y: cstring) {.noStackFrame.} = + proc add*(x: var string, y: cstring) = var i = 0 while y[i] != '\0': add(x, y[i]) |