Skip to content

Commit 72fdb1a

Browse files
committed
rustc: Emit the shape of "float" as f64, not f32
1 parent 059c66b commit 72fdb1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comp/middle/shape.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ fn s_uint(tcx : &ty_ctxt) -> u8 {
243243
}
244244

245245
fn s_float(tcx : &ty_ctxt) -> u8 {
246-
ret shape_f32; // TODO: x86-64
246+
ret shape_f64; // TODO: x86-64
247247
}
248248

249249
fn mk_ctxt(llmod : ModuleRef) -> ctxt {

0 commit comments

Comments
 (0)