rustc: Emit the shape of "float" as f64, not f32

This commit is contained in:
Patrick Walton
2011-08-08 16:51:09 -07:00
parent 059c66b9f7
commit 72fdb1a3bf
+1 -1
View File
@@ -243,7 +243,7 @@ fn s_uint(tcx : &ty_ctxt) -> u8 {
}
fn s_float(tcx : &ty_ctxt) -> u8 {
ret shape_f32; // TODO: x86-64
ret shape_f64; // TODO: x86-64
}
fn mk_ctxt(llmod : ModuleRef) -> ctxt {