diff options
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGOSREntry.cpp')
-rw-r--r-- | Source/JavaScriptCore/dfg/DFGOSREntry.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGOSREntry.cpp b/Source/JavaScriptCore/dfg/DFGOSREntry.cpp index 65f4cfcdd..21c76c6fe 100644 --- a/Source/JavaScriptCore/dfg/DFGOSREntry.cpp +++ b/Source/JavaScriptCore/dfg/DFGOSREntry.cpp @@ -141,13 +141,11 @@ void* prepareOSREntry(ExecState* exec, CodeBlock* codeBlock, unsigned bytecodeIn dataLog(" OSR should succeed.\n"); #endif -#if USE(JSVALUE64) // 3) Perform data format conversions. for (size_t local = 0; local < entry->m_expectedValues.numberOfLocals(); ++local) { if (entry->m_localsForcedDouble.get(local)) *bitwise_cast<double*>(exec->registers() + local) = exec->registers()[local].jsValue().asNumber(); } -#endif // 4) Fix the call frame. |