diff options
| author | gingerBill <bill@gingerbill.org> | 2024-06-11 13:10:26 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-06-11 13:10:26 +0100 |
| commit | e66d71e9cf1389b0cb04d07452d99115357b350f (patch) | |
| tree | 59eb6396a3af77a2c77648807701df12bd0fa27a /src/tilde_const.cpp | |
| parent | a8ec2c06f3f0424e03ab3105b8a3f77907bf6343 (diff) | |
Fix type_info usage
Diffstat (limited to 'src/tilde_const.cpp')
| -rw-r--r-- | src/tilde_const.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tilde_const.cpp b/src/tilde_const.cpp index ce6b0eb82..54bcba581 100644 --- a/src/tilde_const.cpp +++ b/src/tilde_const.cpp @@ -950,7 +950,7 @@ gb_internal cgValue cg_const_value(cgProcedure *p, Type *type, ExactValue const case ExactValue_Integer: GB_ASSERT(!TB_IS_VOID_TYPE(dt)); - // GB_ASSERT(dt.raw != TB_TYPE_I128.raw); + GB_ASSERT(dt.raw != TB_TYPE_I128.raw); if (is_type_unsigned(type)) { u64 i = 0; if (value.kind == ExactValue_Integer && value.value_integer.sign) { |