Two sets of changes. Sorry they are intermingled.
[oota-llvm.git] / test / CodeGen / ARM / fptoint.ll
index 9d43d2b9412b809f2ce4e9fda3bd75ccf1845f12..299cb8f815036a3a60b3f5ae85c4bf2008bcf40e 100644 (file)
@@ -1,5 +1,4 @@
-; RUN: llvm-as < %s | llc -march=arm -mattr=+v6,+vfp2 | not grep fmrs
-; RUN: llvm-as < %s | llc -march=arm -mattr=+v6,+vfp2 | not grep fmrrd
+; RUN: llc < %s -march=arm -mattr=+v6,+vfp2 | FileCheck %s
 
 @i = weak global i32 0         ; <i32*> [#uses=2]
 @u = weak global i32 0         ; <i32*> [#uses=2]
@@ -39,3 +38,12 @@ define void @foo8(double %x) {
        store i32 %tmp1, i32* @u
        ret void
 }
+
+define void @foo9(double %x) {
+       %tmp = fptoui double %x to i16
+       store i16 %tmp, i16* null
+       ret void
+}
+; CHECK: foo9:
+; CHECK:       vmov    r0, s0
+