From 6a98bf3dba6f3ed5b40fe7899899e2a792028be4 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 16 Aug 2017 19:07:35 -0400 Subject: compiler_rt implementations for __fixuns* functions * add u128 and i128 integer types * add f128 floating point type * implement big integer multiplication (See #405) --- src/analyze.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/analyze.cpp') diff --git a/src/analyze.cpp b/src/analyze.cpp index 8418dbdcd1..1cb36682f9 100644 --- a/src/analyze.cpp +++ b/src/analyze.cpp @@ -3085,6 +3085,8 @@ TypeTableEntry **get_int_type_ptr(CodeGen *g, bool is_signed, uint32_t size_in_b index = 2; } else if (size_in_bits == 64) { index = 3; + } else if (size_in_bits == 128) { + index = 4; } else { return nullptr; } -- cgit v1.2.3