Index: src/mips/macro-assembler-mips.h |
diff --git a/src/mips/macro-assembler-mips.h b/src/mips/macro-assembler-mips.h |
index f57418f386d29354760d4e7a5b586a26e1f515ba..1766866ee8b90f6410b3999efc9309b5868a6517 100644 |
--- a/src/mips/macro-assembler-mips.h |
+++ b/src/mips/macro-assembler-mips.h |
@@ -819,7 +819,8 @@ class MacroAssembler: public Assembler { |
// Load the initial map for new Arrays from a JSFunction. |
void LoadInitialArrayMap(Register function_in, |
Register scratch, |
- Register map_out); |
+ Register map_out, |
+ bool can_have_holes); |
void LoadGlobalFunction(int index, Register function); |
@@ -961,9 +962,9 @@ class MacroAssembler: public Assembler { |
// Check if a map for a JSObject indicates that the object has fast smi only |
// elements. Jump to the specified label if it does not. |
- void CheckFastSmiOnlyElements(Register map, |
- Register scratch, |
- Label* fail); |
+ void CheckFastSmiElements(Register map, |
+ Register scratch, |
+ Label* fail); |
// Check to see if maybe_number can be stored as a double in |
// FastDoubleElements. If it can, store it at the index specified by key in |