Index: src/ia32/macro-assembler-ia32.cc |
diff --git a/src/ia32/macro-assembler-ia32.cc b/src/ia32/macro-assembler-ia32.cc |
index 0235a13894bd08bcf84d9d9f8f06cf4009ed26a2..7847b3b398d5a749619c684c0fea00494f5ee362 100644 |
--- a/src/ia32/macro-assembler-ia32.cc |
+++ b/src/ia32/macro-assembler-ia32.cc |
@@ -2429,7 +2429,7 @@ void MacroAssembler::CallApiFunctionAndReturn( |
bind(&promote_scheduled_exception); |
{ |
FrameScope frame(this, StackFrame::INTERNAL); |
- CallRuntime(Runtime::kPromoteScheduledException, 0); |
+ CallRuntime(Runtime::kHiddenPromoteScheduledException, 0); |
} |
jmp(&exception_handled); |
@@ -3021,9 +3021,9 @@ void MacroAssembler::Throw(BailoutReason reason) { |
// We don't actually want to generate a pile of code for this, so just |
// claim there is a stack frame, without generating one. |
FrameScope scope(this, StackFrame::NONE); |
- CallRuntime(Runtime::kThrowMessage, 1); |
+ CallRuntime(Runtime::kHiddenThrowMessage, 1); |
} else { |
- CallRuntime(Runtime::kThrowMessage, 1); |
+ CallRuntime(Runtime::kHiddenThrowMessage, 1); |
} |
// will not return here |
int3(); |