Fixed X64 compilation.
authorsgjesse@chromium.org <sgjesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Tue, 30 Jun 2009 14:58:33 +0000 (14:58 +0000)
committersgjesse@chromium.org <sgjesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Tue, 30 Jun 2009 14:58:33 +0000 (14:58 +0000)
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

index 583c6a8..481a4f6 100644 (file)
@@ -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,\r
+                                            bool is_dont_delete) {
   UNIMPLEMENTED();
   return NULL;
 }