Changeset 251911 in webkit


Ignore:
Timestamp:
Oct 31, 2019 10:53:44 PM (4 years ago)
Author:
Tadeu Zagallo
Message:

Fix GTK build after r251886
https://bugs.webkit.org/show_bug.cgi?id=203703

Reviewed by Yusuke Suzuki.

slow_path_wasm_throw_exception was missing extern "C" in the implementation file.

  • wasm/WasmSlowPaths.cpp:

(JSC::LLInt::slow_path_wasm_throw_exception):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r251909 r251911  
     12019-10-31  Tadeu Zagallo  <tzagallo@apple.com>
     2
     3        Fix GTK build after r251886
     4        https://bugs.webkit.org/show_bug.cgi?id=203703
     5
     6        Reviewed by Yusuke Suzuki.
     7
     8        slow_path_wasm_throw_exception was missing `extern "C"` in the implementation file.
     9
     10        * wasm/WasmSlowPaths.cpp:
     11        (JSC::LLInt::slow_path_wasm_throw_exception):
     12
    1132019-10-31  Tadeu Zagallo  <tzagallo@apple.com>
    214
  • trunk/Source/JavaScriptCore/wasm/WasmSlowPaths.cpp

    r251886 r251911  
    398398}
    399399
    400 SlowPathReturnType slow_path_wasm_throw_exception(CallFrame* callFrame, const Instruction* pc, Wasm::Instance* instance, Wasm::ExceptionType exceptionType)
     400extern "C" SlowPathReturnType slow_path_wasm_throw_exception(CallFrame* callFrame, const Instruction* pc, Wasm::Instance* instance, Wasm::ExceptionType exceptionType)
    401401{
    402402    UNUSED_PARAM(pc);
Note: See TracChangeset for help on using the changeset viewer.