diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2016-04-10 09:28:39 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2016-04-10 09:28:39 +0000 |
commit | 32761a6cee1d0dee366b885b7b9c777e67885688 (patch) | |
tree | d6bec92bebfb216f4126356e55518842c2f476a1 /Source/JavaScriptCore/jit/JITExceptions.h | |
parent | a4e969f4965059196ca948db781e52f7cfebf19e (diff) | |
download | WebKitGtk-tarball-32761a6cee1d0dee366b885b7b9c777e67885688.tar.gz |
webkitgtk-2.4.11webkitgtk-2.4.11
Diffstat (limited to 'Source/JavaScriptCore/jit/JITExceptions.h')
-rw-r--r-- | Source/JavaScriptCore/jit/JITExceptions.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/jit/JITExceptions.h b/Source/JavaScriptCore/jit/JITExceptions.h index 3ccac84c5..376e269f1 100644 --- a/Source/JavaScriptCore/jit/JITExceptions.h +++ b/Source/JavaScriptCore/jit/JITExceptions.h @@ -26,17 +26,20 @@ #ifndef JITExceptions_h #define JITExceptions_h -#include "Interpreter.h" #include "JSCJSValue.h" +#if ENABLE(JIT) || ENABLE(LLINT) + namespace JSC { class ExecState; class VM; -void genericUnwind(VM*, ExecState*, UnwindStart = UnwindFromCurrentFrame); +void genericUnwind(VM*, ExecState*, JSValue exceptionValue); } // namespace JSC +#endif // ENABLE(JIT) || ENABLE(LLINT) + #endif // JITExceptions_h |