diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-12-13 18:48:28 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-13 18:48:28 -0800 |
commit | a86056437ae71c77ce2a2b5a3447c293c199ef2a (patch) | |
tree | 6146400917b5c1cb2414c4a053e403878d4747dd /src | |
parent | 8427bf772b4bb4c9ae307aa19a5770bc63c6f2bc (diff) |
note global usage of impure ptr
Diffstat (limited to 'src')
-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 6349647d..1f2d46aa 100644 --- a/src/library.js +++ b/src/library.js @@ -594,7 +594,7 @@ LibraryManager.library = { #endif allocate([ allocate( {{{ Runtime.QUANTUM_SIZE === 4 ? '[0, 0, 0, 0, _stdin, 0, 0, 0, _stdout, 0, 0, 0, _stderr, 0, 0, 0]' : '[0, _stdin, _stdout, _stderr]' }}}, - 'void*', ALLOC_STATIC) ], 'void*', ALLOC_NONE, __impure_ptr); + 'void*', ALLOC_STATIC) ], 'void*', ALLOC_NONE, {{{ makeGlobalUse('__impure_ptr') }}}); }, quit: function() { |