blob: 3b34a7db9dc32eef16e790049e013da339e44aca [file] [log] [blame]
Chris Lattner0abf4ed2007-01-14 19:40:48 +00001; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 'fcmp uno.*0.0'
2; PR1111
3define i1 %test(double %X) {
4%tmp = fcmp une double %X, %X
5 ret i1 %tmp
6}