From b38a8cfb12fc37c19a9cb2fb27ef4806d232ff23 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 1 Jun 2019 12:26:54 +0100 Subject: Move internal 128-bit stuff to a windows specific file --- src/check_type.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/check_type.cpp b/src/check_type.cpp index f7d577a54..555b54e78 100644 --- a/src/check_type.cpp +++ b/src/check_type.cpp @@ -1853,9 +1853,13 @@ Type *type_to_abi_compat_param_type(gbAllocator a, Type *original_type, ProcCall if (is_type_simd_vector(original_type)) { return new_type; } - if (build_context.word_size == 8) { + if (build_context.ODIN_ARCH == "amd64") { if (is_type_integer_128bit(original_type)) { - return alloc_type_simd_vector(2, t_u64); + if (build_context.ODIN_OS == "windows") { + return alloc_type_simd_vector(2, t_u64); + } else { + return original_type; + } } } @@ -1971,7 +1975,7 @@ Type *type_to_abi_compat_result_type(gbAllocator a, Type *original_type, ProcCal } if (build_context.ODIN_OS == "windows") { - if (build_context.word_size == 8) { + if (build_context.ODIN_ARCH == "amd64") { if (is_type_integer_128bit(single_type)) { if (cc == ProcCC_None) { return original_type; -- cgit v1.2.3