1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/Transforms/InstCombine/2007-01-14-FcmpSelf.ll

7 lines
141 B
LLVM
Raw Normal View History

; RUN: opt < %s -instcombine -S | grep "fcmp uno.*0.0"
2007-01-14 20:40:48 +01:00
; PR1111
define i1 @test(double %X) {
%tmp = fcmp une double %X, %X
2007-01-14 20:40:48 +01:00
ret i1 %tmp
}