diff options
| author | gingerBill <bill@gingerbill.org> | 2023-04-20 12:02:32 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-04-20 12:02:32 +0100 |
| commit | f5d9ca64f95ab47b6c2809275755ebca260c9448 (patch) | |
| tree | 9866cb910639ddaf5438d25d83dcb6428ea4e092 /src/llvm_abi.cpp | |
| parent | cde442fa2cb8ebd2a2e305b75f677348c17bb768 (diff) | |
Begin work on new pseudo-architecture: wasm64p32
Diffstat (limited to 'src/llvm_abi.cpp')
| -rw-r--r-- | src/llvm_abi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llvm_abi.cpp b/src/llvm_abi.cpp index dabdd6829..3fc68644d 100644 --- a/src/llvm_abi.cpp +++ b/src/llvm_abi.cpp @@ -1467,7 +1467,7 @@ gb_internal LB_ABI_INFO(lb_get_abi_info_internal) { case TargetArch_arm64: return lbAbiArm64::abi_info(c, arg_types, arg_count, return_type, return_is_defined, return_is_tuple, calling_convention); case TargetArch_wasm32: - case TargetArch_wasm64: + case TargetArch_wasm64p32: return lbAbiWasm::abi_info(c, arg_types, arg_count, return_type, return_is_defined, return_is_tuple, calling_convention); } |