Basic i128 support

This commit is contained in:
bjorn3
2019-06-12 19:24:47 +02:00
committed by Dan Gohman
parent 3b0e244316
commit c9a25abbc4
7 changed files with 26 additions and 9 deletions

View File

@@ -365,6 +365,7 @@ impl<'a> Lexer<'a> {
"i16" => types::I16,
"i32" => types::I32,
"i64" => types::I64,
"i128" => types::I128,
"f32" => types::F32,
"f64" => types::F64,
"b1" => types::B1,