diff options
-rw-r--r-- | src/emscripten-optimizer/simple_ast.h | 3 | ||||
-rw-r--r-- | test/wasm2js/minus_minus.2asm.js | 40 | ||||
-rw-r--r-- | test/wasm2js/minus_minus.wast | 18 |
3 files changed, 61 insertions, 0 deletions
diff --git a/src/emscripten-optimizer/simple_ast.h b/src/emscripten-optimizer/simple_ast.h index 969277466..ded8af5f4 100644 --- a/src/emscripten-optimizer/simple_ast.h +++ b/src/emscripten-optimizer/simple_ast.h @@ -986,6 +986,9 @@ struct JSPrinter { } void printNum(Ref node) { + if (node->getNumber() < 0 && buffer[used-1] == '-') { + emit(' '); // cannot join - and - to --, looks like the -- operator + } emit(numToString(node->getNumber(), finalize)); } diff --git a/test/wasm2js/minus_minus.2asm.js b/test/wasm2js/minus_minus.2asm.js new file mode 100644 index 000000000..687e64622 --- /dev/null +++ b/test/wasm2js/minus_minus.2asm.js @@ -0,0 +1,40 @@ + +function asmFunc(global, env, buffer) { + "almost asm"; + var HEAP8 = new global.Int8Array(buffer); + var HEAP16 = new global.Int16Array(buffer); + var HEAP32 = new global.Int32Array(buffer); + var HEAPU8 = new global.Uint8Array(buffer); + var HEAPU16 = new global.Uint16Array(buffer); + var HEAPU32 = new global.Uint32Array(buffer); + var HEAPF32 = new global.Float32Array(buffer); + var HEAPF64 = new global.Float64Array(buffer); + var Math_imul = global.Math.imul; + var Math_fround = global.Math.fround; + var Math_abs = global.Math.abs; + var Math_clz32 = global.Math.clz32; + var Math_min = global.Math.min; + var Math_max = global.Math.max; + var Math_floor = global.Math.floor; + var Math_ceil = global.Math.ceil; + var Math_sqrt = global.Math.sqrt; + var abort = env.abort; + var nan = global.NaN; + var infinity = global.Infinity; + function $0() { + return ~~- -7094.0 | 0; + } + + function $1() { + $0() | 0; + } + + var FUNCTION_TABLE = []; + return { + func_44_invoker: $1 + }; +} + +const memasmFunc = new ArrayBuffer(65536); +const retasmFunc = asmFunc({Math,Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array,NaN,Infinity}, {abort:function() { throw new Error('abort'); }},memasmFunc); +export const func_44_invoker = retasmFunc.func_44_invoker; diff --git a/test/wasm2js/minus_minus.wast b/test/wasm2js/minus_minus.wast new file mode 100644 index 000000000..4e2136be5 --- /dev/null +++ b/test/wasm2js/minus_minus.wast @@ -0,0 +1,18 @@ +(module + (type $0 (func (result i32))) + (type $1 (func)) + (export "func_44_invoker" (func $1)) + (func $0 (; 0 ;) (type $0) (result i32) + (i32.trunc_f64_s + (f64.neg + (f64.const -7094) ;; negation of a negative must not be emitted as "--" in js, that will not parse + ) + ) + ) + (func $1 (; 1 ;) (type $1) + (drop + (call $0) + ) + ) +) + |