mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
c0900c31b1
This reverts commit 4f3cf3853e1145e3e08fb42ace79ba3e4e268540. llvm-svn: 363309
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
|
|
}
|