diff options
| author | gingerBill <bill@gingerbill.org> | 2021-09-25 15:38:56 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-09-25 15:38:56 +0100 |
| commit | fa0d58f96ea0d576cf4adbd77480cfd4ce0510c4 (patch) | |
| tree | 6dcb43d5498b94bbacf647672d42dc24fb27787a /src/types.cpp | |
| parent | ebc09d5e4ee956e2ffa7e18f9f0c57af6433c64b (diff) | |
Correct f64 -> u128/i128 generation
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/types.cpp b/src/types.cpp index 568516007..97552240f 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -1518,6 +1518,7 @@ Type *integer_endian_type_to_platform_type(Type *t) { case Basic_u32le: return t_u32; case Basic_i64le: return t_i64; case Basic_u64le: return t_u64; + case Basic_i128le: return t_i128; case Basic_u128le: return t_u128; case Basic_i16be: return t_i16; @@ -1526,6 +1527,7 @@ Type *integer_endian_type_to_platform_type(Type *t) { case Basic_u32be: return t_u32; case Basic_i64be: return t_i64; case Basic_u64be: return t_u64; + case Basic_i128be: return t_i128; case Basic_u128be: return t_u128; case Basic_f16le: return t_f16; |