Index: src/x64/stub-cache-x64.cc |
=================================================================== |
--- src/x64/stub-cache-x64.cc (revision 2477) |
+++ src/x64/stub-cache-x64.cc (working copy) |
@@ -44,24 +44,24 @@ |
JSFunction* c, |
String* d, |
StubCompiler::CheckType e) { |
- UNIMPLEMENTED(); |
- return NULL; |
+ // TODO(X64): Implement a real stub. |
+ return Failure::InternalError(); |
} |
Object* CallStubCompiler::CompileCallField(Object* a, |
JSObject* b, |
int c, |
String* d) { |
- UNIMPLEMENTED(); |
- return NULL; |
+ // TODO(X64): Implement a real stub. |
+ return Failure::InternalError(); |
} |
Object* CallStubCompiler::CompileCallInterceptor(Object* a, |
JSObject* b, |
String* c) { |
- UNIMPLEMENTED(); |
- return NULL; |
+ // TODO(X64): Implement a real stub. |
+ return Failure::InternalError(); |
} |
@@ -71,8 +71,8 @@ |
JSGlobalPropertyCell* cell, |
JSFunction* function, |
String* name) { |
- UNIMPLEMENTED(); |
- return NULL; |
+ // TODO(X64): Implement a real stub. |
+ return Failure::InternalError(); |
} |