summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/X86/fast-isel-fneg.ll
blob: 99c728a7366ccef88e7ecc9d24d1045aa364e234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc < %s -fast-isel -fast-isel-abort=1 -mtriple=x86_64-apple-darwin10 | FileCheck %s
; RUN: llc < %s -fast-isel -mtriple=i686-- -mattr=+sse2 | FileCheck --check-prefix=SSE2 %s

; SSE2: xor
; SSE2: xor
; SSE2-NOT: xor

; CHECK-LABEL: doo:
; CHECK: xor
define double @doo(double %x) nounwind {
  %y = fsub double -0.0, %x
  ret double %y
}

; CHECK-LABEL: foo:
; CHECK: xor
define float @foo(float %x) nounwind {
  %y = fsub float -0.0, %x
  ret float %y
}
OpenPOWER on IntegriCloud