diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-03-15 20:13:57 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-03-15 20:13:57 -0700 |
commit | 5524f8bf30941862789eadef176b254fe3186cdf (patch) | |
tree | d0fed0756943a15ac4ee6a259a8f462c92a8c543 /src/library.js | |
parent | 6c22a66671b6f42ad63044b0fd46a5dc892298b4 (diff) |
stop using lots of memory to manage strings at the end of compilation
Diffstat (limited to 'src/library.js')
-rw-r--r-- | src/library.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js index 1eadfa8b..81eb358a 100644 --- a/src/library.js +++ b/src/library.js @@ -1138,7 +1138,7 @@ var Library = { // setjmp.h _setjmp: function(env) { - print('WARNING: setjmp() not really implemented, will fail if longjmp() is actually called'); + // XXX print('WARNING: setjmp() not really implemented, will fail if longjmp() is actually called'); return 0; }, |