Skip to content

Commit 62ca2bf

Browse files
committed
add tempValue in asm
1 parent c31a515 commit 62ca2bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

emscripten.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ def make_table(sig, raw):
377377
''' % (asm_setup,) + '\n' + asm_global_vars + '''
378378
var __THREW__ = 0;
379379
var undef = 0;
380-
var tempInt = 0;
380+
var tempInt = 0, tempValue = 0;
381381
''' + ''.join(['''
382382
var tempRet%d = 0;''' % i for i in range(10)]) + '\n' + asm_global_funcs + '''
383383
function stackAlloc(size) {

0 commit comments

Comments
 (0)