diff options
Diffstat (limited to 'Source/JavaScriptCore/llint/LowLevelInterpreter.asm')
-rw-r--r-- | Source/JavaScriptCore/llint/LowLevelInterpreter.asm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Source/JavaScriptCore/llint/LowLevelInterpreter.asm b/Source/JavaScriptCore/llint/LowLevelInterpreter.asm index bbfa859f2..e59ddeba4 100644 --- a/Source/JavaScriptCore/llint/LowLevelInterpreter.asm +++ b/Source/JavaScriptCore/llint/LowLevelInterpreter.asm @@ -103,7 +103,7 @@ end # Some common utilities. macro crash() - storei 0, 0xbbadbeef[] + storei t0, 0xbbadbeef[] move 0, t0 call t0 end @@ -727,19 +727,13 @@ _llint_op_throw_reference_error: _llint_op_profile_will_call: traceExecution() - loadp JITStackFrame::enabledProfilerReference[sp], t0 - btpz [t0], .opProfileWillCallDone callSlowPath(_llint_slow_path_profile_will_call) -.opProfileWillCallDone: dispatch(2) _llint_op_profile_did_call: traceExecution() - loadp JITStackFrame::enabledProfilerReference[sp], t0 - btpz [t0], .opProfileWillCallDone callSlowPath(_llint_slow_path_profile_did_call) -.opProfileDidCallDone: dispatch(2) |