You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
This commit is contained in:
parent
5cd5df71cc
commit
8e12397d70
20
external/llvm/test/CodeGen/X86/fast-isel-fneg.ll
vendored
Normal file
20
external/llvm/test/CodeGen/X86/fast-isel-fneg.ll
vendored
Normal file
@ -0,0 +1,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
|
||||
}
|
Reference in New Issue
Block a user