Enable all Hexagon tests.
[oota-llvm.git] / test / CodeGen / X86 / fp-immediate-shorten.ll
index 966bf787500ae2225e2ec56ca2014b123636eb43..cafc61a41ff2946c37209f9548dc7f06f1bc7847 100644 (file)
@@ -1,5 +1,9 @@
 ;; Test that this FP immediate is stored in the constant pool as a float.
 
-; RUN: llvm-as < %s | llc -march=x86 -mattr=-sse2 | grep '.long.1123418112'
+; RUN: llc < %s -march=x86 -mattr=-sse2,-sse3 | \
+; RUN:   grep {.long.1123418112}
+
+define double @D() {
+        ret double 1.230000e+02
+}
 
-double %D() { ret double 123.0 }