Eliminate more uses of llvm-as and llvm-dis.
[oota-llvm.git] / test / CodeGen / X86 / fast-isel-fneg.ll
1 ; RUN: llc < %s -fast-isel -fast-isel-abort -march=x86-64 | FileCheck %s
2
3 ; CHECK: doo:
4 ; CHECK: xor
5 define double @doo(double %x) nounwind {
6   %y = fsub double -0.0, %x
7   ret double %y
8 }
9
10 ; CHECK: foo:
11 ; CHECK: xor
12 define float @foo(float %x) nounwind {
13   %y = fsub float -0.0, %x
14   ret float %y
15 }