Reviewers: Mads Ager, Description: X64: Fix Generate_NotifyLazyDeoptimized to actually call with the LAZY flag.
This should fix the flaky cctest failure on the debug run of x64 with crankshaft enabled. Please review this at http://codereview.chromium.org/6480032/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/x64/builtins-x64.cc Index: src/x64/builtins-x64.cc =================================================================== --- src/x64/builtins-x64.cc (revision 6713) +++ src/x64/builtins-x64.cc (working copy) @@ -596,7 +596,7 @@ void Builtins::Generate_NotifyLazyDeoptimized(MacroAssembler* masm) { - Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::EAGER); + Generate_NotifyDeoptimizedHelper(masm, Deoptimizer::LAZY); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
