Commit dc154a98 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Fix 64-bit after in-loop patch.

Review URL: http://codereview.chromium.org/115764

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2047 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 01f7c87f
......@@ -457,7 +457,8 @@ void CallIC::GenerateNormal(MacroAssembler* a, int b) {
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::CompileCallConstant(Object* a,
Object* CallStubCompiler::CompileCallField(Object* a,
JSObject* b,
int c,
String* d) {
String* d,
Code::Flags flags) {
UNIMPLEMENTED();
return NULL;
}
......
......@@ -486,8 +486,7 @@ class CodeGenerator: public AstVisitor {
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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment