Index: src/x64/builtins-x64.cc |
diff --git a/src/x64/builtins-x64.cc b/src/x64/builtins-x64.cc |
index e7daa7f9d644707f507f70e956aefc988611109e..989782292525916ddd2ef89dd051c515be189423 100644 |
--- a/src/x64/builtins-x64.cc |
+++ b/src/x64/builtins-x64.cc |
@@ -729,6 +729,11 @@ void Builtins::Generate_NotifyDeoptimized(MacroAssembler* masm) { |
} |
+void Builtins::Generate_NotifySoftDeoptimized(MacroAssembler* masm) { |
+ Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::LAZY); |
Jakob Kummerow
2013/05/14 11:39:05
s/LAZY/SOFT/!
|
+} |
+ |
+ |
void Builtins::Generate_NotifyLazyDeoptimized(MacroAssembler* masm) { |
Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::LAZY); |
} |