Index: src/ppc/macro-assembler-ppc.h |
diff --git a/src/ppc/macro-assembler-ppc.h b/src/ppc/macro-assembler-ppc.h |
index 5d6275103bddceacb9a9a68d02325dced36c2962..2bc9191e9ba619a0b9bd16c9e8a364f407d92a5c 100644 |
--- a/src/ppc/macro-assembler-ppc.h |
+++ b/src/ppc/macro-assembler-ppc.h |
@@ -982,17 +982,16 @@ class MacroAssembler : public Assembler { |
// Jump to a runtime routine. |
void JumpToExternalReference(const ExternalReference& builtin); |
- // Invoke specified builtin JavaScript function. Adds an entry to |
- // the unresolved list if the name does not resolve. |
- void InvokeBuiltin(Builtins::JavaScript id, InvokeFlag flag, |
+ // Invoke specified builtin JavaScript function. |
+ void InvokeBuiltin(int native_context_index, InvokeFlag flag, |
const CallWrapper& call_wrapper = NullCallWrapper()); |
// Store the code object for the given builtin in the target register and |
// setup the function in r1. |
- void GetBuiltinEntry(Register target, Builtins::JavaScript id); |
+ void GetBuiltinEntry(Register target, int native_context_index); |
// Store the function for the given builtin in the target register. |
- void GetBuiltinFunction(Register target, Builtins::JavaScript id); |
+ void GetBuiltinFunction(Register target, int native_context_index); |
Handle<Object> CodeObject() { |
DCHECK(!code_object_.is_null()); |