From 72fdb1a3bfcf1017a14cb606c8c145bf3355e2db Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Mon, 8 Aug 2011 16:51:09 -0700 Subject: [PATCH] rustc: Emit the shape of "float" as f64, not f32 --- src/comp/middle/shape.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comp/middle/shape.rs b/src/comp/middle/shape.rs index c9abfac24487..fb06d28d2989 100644 --- a/src/comp/middle/shape.rs +++ b/src/comp/middle/shape.rs @@ -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 {