Reviewers: Kevin Millikin, Description: Fix 64-bit after in-loop patch.
Please review this at http://codereview.chromium.org/115764 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/x64/assembler-x64.cc M src/x64/codegen-x64.h Index: src/x64/assembler-x64.cc =================================================================== --- src/x64/assembler-x64.cc (revision 2045) +++ src/x64/assembler-x64.cc (working copy) @@ -457,7 +457,8 @@ Object* CallStubCompiler::CompileCallConstant(Object* a, JSObject* b, JSFunction* c, - StubCompiler::CheckType d) { + StubCompiler::CheckType d, + Code::Flags flags) { UNIMPLEMENTED(); return NULL; } @@ -465,7 +466,8 @@ Object* CallStubCompiler::CompileCallField(Object* a, JSObject* b, int c, - String* d) { + String* d, + Code::Flags flags) { UNIMPLEMENTED(); return NULL; } Index: src/x64/codegen-x64.h =================================================================== --- src/x64/codegen-x64.h (revision 2045) +++ src/x64/codegen-x64.h (working copy) @@ -486,8 +486,7 @@ Handle<JSFunction> BuildBoilerplate(FunctionLiteral* node); void ProcessDeclarations(ZoneList<Declaration*>* declarations); - Handle<Code> ComputeCallInitialize(int argc); - Handle<Code> ComputeCallInitializeInLoop(int argc); + Handle<Code> ComputeCallInitialize(int argc, InLoopFlag in_loop); // Declare global variables and functions in the given array of // name/value pairs. --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
