1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/Transforms/InstCombine/2007-01-14-FcmpSelf.ll
2007-01-17 07:59:14 +00:00

7 lines
157 B
LLVM

; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 'fcmp uno.*0.0'
; PR1111
define i1 %test(double %X) {
%tmp = fcmp une double %X, %X
ret i1 %tmp
}