| Index: src/code-stubs.h
|
| diff --git a/src/code-stubs.h b/src/code-stubs.h
|
| index d57d2be9c3b0d75f2e3dfea15948b9d0ea6aec96..4c5b2ff090fc3a2e75d412d6b915cdbe13be19d1 100644
|
| --- a/src/code-stubs.h
|
| +++ b/src/code-stubs.h
|
| @@ -28,6 +28,7 @@
|
| #ifndef V8_CODE_STUBS_H_
|
| #define V8_CODE_STUBS_H_
|
|
|
| +#include "allocation.h"
|
| #include "globals.h"
|
|
|
| namespace v8 {
|
| @@ -65,7 +66,8 @@ namespace internal {
|
| V(NumberToString) \
|
| V(CEntry) \
|
| V(JSEntry) \
|
| - V(DebuggerStatement)
|
| + V(DebuggerStatement) \
|
| + V(StringDictionaryNegativeLookup)
|
|
|
| // List of code stubs only used on ARM platforms.
|
| #ifdef V8_TARGET_ARCH_ARM
|
| @@ -424,6 +426,7 @@ class ICCompareStub: public CodeStub {
|
|
|
| void GenerateSmis(MacroAssembler* masm);
|
| void GenerateHeapNumbers(MacroAssembler* masm);
|
| + void GenerateStrings(MacroAssembler* masm);
|
| void GenerateObjects(MacroAssembler* masm);
|
| void GenerateMiss(MacroAssembler* masm);
|
|
|
|
|