Skip to content

Commit 1da4b3b

Browse files
committed
Fix build error after rebasing.
1 parent 0b30352 commit 1da4b3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comp/middle/trans_common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ fn C_i32(i: i32) -> ValueRef {
806806
}
807807

808808
fn C_i64(i: i64) -> ValueRef {
809-
ret C_integral(T_i64(), i as uint, True);
809+
ret C_integral(T_i64(), i as u64, True);
810810
}
811811

812812
fn C_int(cx: @crate_ctxt, i: int) -> ValueRef {

0 commit comments

Comments
 (0)