We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b166cc commit ff21501Copy full SHA for ff21501
1 file changed
src/int.rs
@@ -1086,13 +1086,13 @@ fn type_kind_to_gcc_type<I: Interner>(kind: TyKind<I>) -> CType {
1086
Int(I16) => CType::Int16t,
1087
Int(I32) => CType::Int32t,
1088
Int(I64) => CType::Int64t,
1089
- Int(I128) => CType::Int128t,
+ Int(I128) => panic!("i128"),
1090
1091
Uint(U8) => CType::UInt8t,
1092
Uint(U16) => CType::UInt16t,
1093
Uint(U32) => CType::UInt32t,
1094
Uint(U64) => CType::UInt64t,
1095
- Uint(U128) => CType::UInt128t,
+ Uint(U128) => panic!("u128"),
1096
1097
_ => unimplemented!("Kind: {:?}", kind),
1098
}
0 commit comments