Title: [189805] trunk/Source/_javascript_Core/jit/JITOperations.cpp
Revision
189805
Author
ssakshuw...@apple.com
Date
2015-09-15 04:06:10 -0700 (Tue, 15 Sep 2015)

Log Message

Build fix after r189774

* jit/JITOperations.cpp

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/jit/JITOperations.cpp (189804 => 189805)


--- trunk/Source/_javascript_Core/jit/JITOperations.cpp	2015-09-15 08:57:56 UTC (rev 189804)
+++ trunk/Source/_javascript_Core/jit/JITOperations.cpp	2015-09-15 11:06:10 UTC (rev 189805)
@@ -856,7 +856,9 @@
 #if ENABLE(WEBASSEMBLY)
             if (!isCall(kind)) {
                 exec->vm().throwException(exec, createNotAConstructorError(exec, function));
-                return reinterpret_cast<char*>(vm->getCTIStub(throwExceptionFromCallSlowPathGenerator).code().executableAddress());
+                return encodeResult(
+                    vm->getCTIStub(throwExceptionFromCallSlowPathGenerator).code().executableAddress(),
+                    reinterpret_cast<void*>(KeepTheFrame));
             }
 
             WebAssemblyExecutable* webAssemblyExecutable = static_cast<WebAssemblyExecutable*>(executable);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to