diff options
Diffstat (limited to 'Source/JavaScriptCore/llint/LLIntData.h')
-rw-r--r-- | Source/JavaScriptCore/llint/LLIntData.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/JavaScriptCore/llint/LLIntData.h b/Source/JavaScriptCore/llint/LLIntData.h index 3b3b6027f..8ed2bceda 100644 --- a/Source/JavaScriptCore/llint/LLIntData.h +++ b/Source/JavaScriptCore/llint/LLIntData.h @@ -26,13 +26,13 @@ #ifndef LLIntData_h #define LLIntData_h -#include "JSValue.h" +#include "JSCJSValue.h" #include "Opcode.h" #include <wtf/Platform.h> namespace JSC { -class JSGlobalData; +class VM; struct Instruction; #if ENABLE(LLINT_C_LOOP) @@ -47,7 +47,7 @@ namespace LLInt { class Data { public: - static void performAssertions(JSGlobalData&); + static void performAssertions(VM&); private: static Instruction* s_exceptionInstructions; @@ -96,7 +96,7 @@ ALWAYS_INLINE void* getCodePtr(OpcodeID id) class Data { public: - static void performAssertions(JSGlobalData&) { } + static void performAssertions(VM&) { } }; #if COMPILER(CLANG) |