new testcase

llvm-svn: 33206
This commit is contained in:
Chris Lattner 2007-01-14 19:40:48 +00:00
parent be388d791a
commit 0abf4ed41e
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
; 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
}