mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-19 15:13:49 -04:00
58c78758f4
This reverts commit 4f3cf3853e1145e3e08fb42ace79ba3e4e268540. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@363309 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
212 B
LLVM
10 lines
212 B
LLVM
; RUN: llc < %s -march=xcore | FileCheck %s
|
|
define i1 @test(double %F, double %G) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: test:
|
|
; CHECK: xor
|
|
%0 = fsub double -0.000000e+00, %F
|
|
%1 = fcmp olt double %G, %0
|
|
ret i1 %1
|
|
}
|