Reapply "blockfreq: Rewrite BlockFrequencyInfoImpl"
[oota-llvm.git] / test / CodeGen / XCore / fneg.ll
index ac30410cf89794bfea6138f0eaf2dc5d08338cc4..67ab6195aad20b4205302985d0aaacf7134c453f 100644 (file)
@@ -1,8 +1,9 @@
-; RUN: llvm-as < %s | llc -march=xcore > %t1.s
-; RUN: grep "bl __subdf3" %t1.s | count 1
+; RUN: llc < %s -march=xcore | FileCheck %s
 define i1 @test(double %F) nounwind {
 entry:
-       %0 = sub double -0.000000e+00, %F
+; CHECK-LABEL: test:
+; CHECK: xor
+       %0 = fsub double -0.000000e+00, %F
        %1 = fcmp olt double 0.000000e+00, %0
        ret i1 %1
 }