Skip to content

Commit ff21501

Browse files
committed
TO REVERT: Panic on 128-bit integers to see where it is created
1 parent 9b166cc commit ff21501

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/int.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1086,13 +1086,13 @@ fn type_kind_to_gcc_type<I: Interner>(kind: TyKind<I>) -> CType {
10861086
Int(I16) => CType::Int16t,
10871087
Int(I32) => CType::Int32t,
10881088
Int(I64) => CType::Int64t,
1089-
Int(I128) => CType::Int128t,
1089+
Int(I128) => panic!("i128"),
10901090

10911091
Uint(U8) => CType::UInt8t,
10921092
Uint(U16) => CType::UInt16t,
10931093
Uint(U32) => CType::UInt32t,
10941094
Uint(U64) => CType::UInt64t,
1095-
Uint(U128) => CType::UInt128t,
1095+
Uint(U128) => panic!("u128"),
10961096

10971097
_ => unimplemented!("Kind: {:?}", kind),
10981098
}

0 commit comments

Comments
 (0)