Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion test/other/metadce/test_metadce_cxx_ctors1.exports
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
__cxa_increment_exception_refcount
__cxa_is_pointer_type
__errno_location
__indirect_function_table
Expand Down
2 changes: 1 addition & 1 deletion test/other/metadce/test_metadce_cxx_ctors1.size
Original file line number Diff line number Diff line change
@@ -1 +1 @@
123573
123454
1 change: 0 additions & 1 deletion test/other/metadce/test_metadce_cxx_ctors2.exports
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
__cxa_increment_exception_refcount
__cxa_is_pointer_type
__errno_location
__indirect_function_table
Expand Down
2 changes: 1 addition & 1 deletion test/other/metadce/test_metadce_cxx_ctors2.size
Original file line number Diff line number Diff line change
@@ -1 +1 @@
123478
123359
1 change: 0 additions & 1 deletion test/other/metadce/test_metadce_cxx_noexcept.exports
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
__cxa_increment_exception_refcount
__cxa_is_pointer_type
__errno_location
__indirect_function_table
Expand Down
2 changes: 1 addition & 1 deletion test/other/metadce/test_metadce_cxx_noexcept.size
Original file line number Diff line number Diff line change
@@ -1 +1 @@
126371
126251
7 changes: 2 additions & 5 deletions tools/deps_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,9 @@ def append_deps_info(js_symbol_deps):
def get_deps_info():
if not settings.WASM_EXCEPTIONS and settings.LINK_AS_CXX:
_deps_info['__cxa_end_catch'] = ['setThrew', '__cxa_decrement_exception_refcount']
base_js_exception_deps = [
'__cxa_is_pointer_type',
'__cxa_increment_exception_refcount',
]
base_js_exception_deps = ['__cxa_is_pointer_type']
_deps_info['__cxa_throw'] = base_js_exception_deps
_deps_info['__cxa_begin_catch'] = base_js_exception_deps
_deps_info['__cxa_begin_catch'] = base_js_exception_deps + ['__cxa_increment_exception_refcount']
_deps_info['__cxa_find_matching_catch'] = base_js_exception_deps + ['__cxa_can_catch', 'setTempRet0']
for i in range(1, 10):
_deps_info['__cxa_find_matching_catch_%d' % i] = _deps_info['__cxa_find_matching_catch']
Expand Down