Skip to content

Commit 0b57df7

Browse files
committed
fix post rebase.
1 parent 36b6d0e commit 0b57df7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/middle/ty.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5509,12 +5509,12 @@ impl IntTypeExt for attr::IntType {
55095509
SignedInt(ast::TyI16) => cx.types.i16,
55105510
SignedInt(ast::TyI32) => cx.types.i32,
55115511
SignedInt(ast::TyI64) => cx.types.i64,
5512-
SignedInt(ast::TyIs) => cx.types.int,
5512+
SignedInt(ast::TyIs) => cx.types.isize,
55135513
UnsignedInt(ast::TyU8) => cx.types.u8,
55145514
UnsignedInt(ast::TyU16) => cx.types.u16,
55155515
UnsignedInt(ast::TyU32) => cx.types.u32,
55165516
UnsignedInt(ast::TyU64) => cx.types.u64,
5517-
UnsignedInt(ast::TyUs) => cx.types.uint,
5517+
UnsignedInt(ast::TyUs) => cx.types.usize,
55185518
}
55195519
}
55205520

0 commit comments

Comments
 (0)