From 20165a648e0f07f8e9d3ac4113e8665cd75e0dc2 Mon Sep 17 00:00:00 2001 From: "sgjesse@chromium.org" Date: Tue, 30 Jun 2009 14:58:33 +0000 Subject: [PATCH] Fixed X64 compilation. TBR=kasperl@chromium.org Review URL: http://codereview.chromium.org/150103 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2309 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/x64/stub-cache-x64.cc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/x64/stub-cache-x64.cc b/src/x64/stub-cache-x64.cc index 583c6a8..481a4f6 100644 --- a/src/x64/stub-cache-x64.cc +++ b/src/x64/stub-cache-x64.cc @@ -42,8 +42,7 @@ namespace internal { Object* CallStubCompiler::CompileCallConstant(Object* a, JSObject* b, JSFunction* c, - StubCompiler::CheckType d, - Code::Flags flags) { + StubCompiler::CheckType d) { UNIMPLEMENTED(); return NULL; } @@ -51,8 +50,7 @@ Object* CallStubCompiler::CompileCallConstant(Object* a, Object* CallStubCompiler::CompileCallField(Object* a, JSObject* b, int c, - String* d, - Code::Flags flags) { + String* d) { UNIMPLEMENTED(); return NULL; } @@ -113,7 +111,8 @@ Object* LoadStubCompiler::CompileLoadInterceptor(JSObject* a, Object* LoadStubCompiler::CompileLoadGlobal(JSGlobalObject* object, JSGlobalPropertyCell* cell, - String* name) { + String* name, + bool is_dont_delete) { UNIMPLEMENTED(); return NULL; } -- 2.7.4