Handle the situation where CodeGenPrepare removes a reference to a BB that has
[oota-llvm.git] / test / CodeGen / ARM / fmuls.ll
index bfafd20c8602c51e5dbc6adf60a1b1e2fa1b5c80..1566a9272db15bb2ffb0e112a57d98dcbe1cb506 100644 (file)
@@ -10,14 +10,23 @@ entry:
 }
 
 ; VFP2: test:
-; VFP2:        vmul.f32        s0, s1, s0
+; VFP2:        vmul.f32        s
 
 ; NFP1: test:
-; NFP1:        vmul.f32        d0, d1, d0
+; NFP1:        vmul.f32        d
 ; NFP0: test:
-; NFP0:        vmul.f32        s0, s1, s0
+; NFP0:        vmul.f32        s
 
 ; CORTEXA8: test:
-; CORTEXA8:    vmul.f32        d0, d1, d0
+; CORTEXA8:    vmul.f32        d
 ; CORTEXA9: test:
-; CORTEXA9:    vmul.f32        s0, s0, s1
+; CORTEXA9:    vmul.f32        s{{.}}, s{{.}}, s{{.}}
+
+; VFP2: test2
+define float @test2(float %a) nounwind {
+; CHECK-NOT: mul
+; CHECK: mov pc, lr
+  %ret = fmul float %a, 1.0
+  ret float %ret
+}
+