diff options
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGOSRExitCompilationInfo.h')
-rw-r--r-- | Source/JavaScriptCore/dfg/DFGOSRExitCompilationInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGOSRExitCompilationInfo.h b/Source/JavaScriptCore/dfg/DFGOSRExitCompilationInfo.h index 9679545b4..75f1d21c4 100644 --- a/Source/JavaScriptCore/dfg/DFGOSRExitCompilationInfo.h +++ b/Source/JavaScriptCore/dfg/DFGOSRExitCompilationInfo.h @@ -26,8 +26,6 @@ #ifndef DFGOSRExitCompilationInfo_h #define DFGOSRExitCompilationInfo_h -#include <wtf/Platform.h> - #if ENABLE(DFG_JIT) #include "CodeOrigin.h" @@ -38,6 +36,8 @@ namespace JSC { namespace DFG { struct OSRExitCompilationInfo { MacroAssembler::JumpList m_failureJumps; + MacroAssembler::Label m_replacementSource; + MacroAssembler::Label m_replacementDestination; }; } } // namespace JSC::DFG |