Fix pointer info on PPC byval stores
[oota-llvm.git] / test / Transforms / InstCombine / fold-calls.ll
index b87edb69c661190196d81ce66c379073b18cc911..1a9a9fd2e9ee1d130daa16097c6494bc7ad09727 100644 (file)
@@ -1,11 +1,7 @@
 ; RUN: opt -instcombine -S < %s | FileCheck %s
 
-; This test is inexplicably still failing, which suggests a
-; bug in the host libm.
-; XFAIL: arm-linux
-
 ; This shouldn't fold, because sin(inf) is invalid.
-; CHECK: @foo
+; CHECK-LABEL: @foo(
 ; CHECK:   %t = call double @sin(double 0x7FF0000000000000)
 define double @foo() {
   %t = call double @sin(double 0x7FF0000000000000)
@@ -13,7 +9,7 @@ define double @foo() {
 }
 
 ; This should fold.
-; CHECK: @bar
+; CHECK-LABEL: @bar(
 ; CHECK:   ret double 0.0
 define double @bar() {
   %t = call double @sin(double 0.0)