diff options
| author | gingerBill <bill@gingerbill.org> | 2024-02-05 13:51:16 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-02-05 13:51:16 +0000 |
| commit | 80a0b161b0e2049364e9ea2f9165d84a55bd97f7 (patch) | |
| tree | 160505db637d5c4132b6eabe5924563ed43e2452 /src/checker.cpp | |
| parent | 27feb5998c5a86ffa5ce661313f8beae585804d8 (diff) | |
Force 128-bit calls on wasm
Diffstat (limited to 'src/checker.cpp')
| -rw-r--r-- | src/checker.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/checker.cpp b/src/checker.cpp index 8f1aa5336..e4a680a20 100644 --- a/src/checker.cpp +++ b/src/checker.cpp @@ -2570,7 +2570,7 @@ gb_internal void generate_minimum_dependency_set(Checker *c, Entity *start) { str_lit("memmove"), ); - // FORCE_ADD_RUNTIME_ENTITIES(is_arch_wasm() && !build_context.tilde_backend, + FORCE_ADD_RUNTIME_ENTITIES(is_arch_wasm() && !build_context.tilde_backend, // // Extended data type internal procedures // str_lit("umodti3"), // str_lit("udivti3"), @@ -2587,10 +2587,10 @@ gb_internal void generate_minimum_dependency_set(Checker *c, Entity *start) { // str_lit("gnu_f2h_ieee"), // str_lit("extendhfsf2"), - // // WASM Specific - // str_lit("__ashlti3"), - // str_lit("__multi3"), - // ); + // WASM Specific + str_lit("__ashlti3"), + str_lit("__multi3"), + ); FORCE_ADD_RUNTIME_ENTITIES(!build_context.no_rtti, // Odin types |