Commit 20165a64 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

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
parent 92bb8970
......@@ -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;
}
......
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