Merging r259798, r259835:
[oota-llvm.git] / test / Transforms / Reassociate / fast-fp-commute.ll
index d3e0d9f98822c6eb0222f2929281e74195626a63..6565bbb3d20172be41f004b96c77eab37df8d37d 100644 (file)
@@ -4,8 +4,8 @@ declare void @use(float)
 
 define void @test1(float %x, float %y) {
 ; CHECK-LABEL: test1
-; CHECK: fmul fast float %x, %y
-; CHECK: fmul fast float %x, %y
+; CHECK: fmul fast float %y, %x
+; CHECK: fmul fast float %y, %x
 ; CHECK: fsub fast float %1, %2
 ; CHECK: call void @use(float %{{.*}})
 ; CHECK: call void @use(float %{{.*}})
@@ -20,8 +20,8 @@ define void @test1(float %x, float %y) {
 
 define float @test2(float %x, float %y) {
 ; CHECK-LABEL: test2
-; CHECK-NEXT: fmul fast float %x, %y
-; CHECK-NEXT: fmul fast float %x, %y
+; CHECK-NEXT: fmul fast float %y, %x
+; CHECK-NEXT: fmul fast float %y, %x
 ; CHECK-NEXT: fsub fast float %1, %2
 ; CHECK-NEXT: ret float %3