| OLD | NEW |
| 1 // Modified embenchen to direct to asm-wasm. | 1 // Modified embenchen to direct to asm-wasm. |
| 2 // Flags: --expose-wasm | 2 // Flags: --expose-wasm |
| 3 // TODO(mtrofin): Drop when verifier is fixed. | |
| 4 // Flags: --noturbo-verify-allocation | |
| 5 | 3 |
| 6 var EXPECTED_OUTPUT = 'sum:8930\n'; | 4 var EXPECTED_OUTPUT = 'sum:8930\n'; |
| 7 var Module = { | 5 var Module = { |
| 8 arguments: [1], | 6 arguments: [1], |
| 9 print: function(x) {Module.printBuffer += x + '\n';}, | 7 print: function(x) {Module.printBuffer += x + '\n';}, |
| 10 preRun: [function() {Module.printBuffer = ''}], | 8 preRun: [function() {Module.printBuffer = ''}], |
| 11 postRun: [function() { | 9 postRun: [function() { |
| 12 assertEquals(EXPECTED_OUTPUT, Module.printBuffer); | 10 assertEquals(EXPECTED_OUTPUT, Module.printBuffer); |
| 13 }], | 11 }], |
| 14 }; | 12 }; |
| (...skipping 5958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5973 } | 5971 } |
| 5974 | 5972 |
| 5975 // shouldRunNow refers to calling main(), not run(). | 5973 // shouldRunNow refers to calling main(), not run(). |
| 5976 var shouldRunNow = true; | 5974 var shouldRunNow = true; |
| 5977 if (Module['noInitialRun']) { | 5975 if (Module['noInitialRun']) { |
| 5978 shouldRunNow = false; | 5976 shouldRunNow = false; |
| 5979 } | 5977 } |
| 5980 | 5978 |
| 5981 | 5979 |
| 5982 run([].concat(Module["arguments"])); | 5980 run([].concat(Module["arguments"])); |
| OLD | NEW |