about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-06-10 23:37:06 -0700
committerbors <bors@rust-lang.org>2014-06-10 23:37:06 -0700
commit4fdc27e55ec9cda0ab5315701a96d25e720ce2c3 (patch)
treedc719b1c95b1246416b9c0d026038747b1b2eacd
parentc690191a84728c289a4b3dc17b07934a66311d9d (diff)
parent1a381fa2d257908d0a4c984b1c0e26bdede620d8 (diff)
downloadrust-4fdc27e55ec9cda0ab5315701a96d25e720ce2c3.tar.gz
rust-4fdc27e55ec9cda0ab5315701a96d25e720ce2c3.zip
auto merge of #14786 : pcwalton/rust/enum-to-float-casts, r=alexcrichton
If this breaks your code, take a deep breath, go for a walk, and
consider why you're relying on the sign extension semantics of
enum-to-float casts.

[breaking-change]

Closes #8230.
-rw-r--r--src/librustc/middle/trans/consts.rs2
-rw-r--r--src/test/run-pass/enum-to-float-cast.rs35
2 files changed, 36 insertions, 1 deletions
diff --git a/src/librustc/middle/trans/consts.rs b/src/librustc/middle/trans/consts.rs
index ac6e9ca6c64..eb198511eaf 100644
--- a/src/librustc/middle/trans/consts.rs
+++ b/src/librustc/middle/trans/consts.rs
@@ -503,7 +503,7 @@ fn const_expr_unadjusted(cx: &CrateContext, e: &ast::Expr,
                         let s = ty::type_is_signed(ety) as Bool;
                         llvm::LLVMConstIntCast(iv, llty.to_ref(), s)
                     }
-                    expr::cast_float => llvm::LLVMConstUIToFP(iv, llty.to_ref()),
+                    expr::cast_float => llvm::LLVMConstSIToFP(iv, llty.to_ref()),
                     _ => cx.sess().bug("enum cast destination is not \
                                         integral or float")
                 }
diff --git a/src/test/run-pass/enum-to-float-cast.rs b/src/test/run-pass/enum-to-float-cast.rs
new file mode 100644
index 00000000000..eb6c078efcd
--- /dev/null
+++ b/src/test/run-pass/enum-to-float-cast.rs
@@ -0,0 +1,35 @@
+// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// Tests that enum-to-float-casts do *signed* integer-to-float conversion.
+
+enum E {
+    L0 = -1,
+    H0 = 1
+}
+
+enum F {
+    L1 = 1,
+    H1 = 0xFFFFFFFFFFFFFFFF
+}
+
+static C0: f32 = L0 as f32;
+static C1: f32 = H1 as f32;
+
+pub fn main() {
+    let a = L0 as f32;
+    let b = C0;
+    let c = H1 as f32;
+    let d = C1;
+    assert_eq!(a, -1.0f32);
+    assert_eq!(b, -1.0f32);
+    assert_eq!(c, -1.0f32);
+    assert_eq!(d, -1.0f32);
+}