We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43615a0 commit bc288a5Copy full SHA for bc288a5
src/librustc_trans/cabi_mips64.rs
@@ -124,14 +124,14 @@ fn is_reg_ty(ty: Type) -> bool {
124
125
fn padding_ty(ccx: &CrateContext, align: usize, offset: usize) -> Option<Type> {
126
if ((align - 1 ) & offset) > 0 {
127
- Some(Type::i32(ccx))
+ Some(Type::i64(ccx))
128
} else {
129
None
130
}
131
132
133
fn coerce_to_int(ccx: &CrateContext, size: usize) -> Vec<Type> {
134
- let int_ty = Type::i32(ccx);
+ let int_ty = Type::i64(ccx);
135
let mut args = Vec::new();
136
137
let mut n = size / 64;
0 commit comments