repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git]
/
llvm
/
test
/
Transforms
/
InstCombine
/
2004-08-10-BoolSetCC.ll
blob
c582efa9773e9f6200054295f155302b92c251fe
1
; RUN: opt < %s -passes=instcombine -S | \
2
; RUN: grep "ret i1 false"
3
4
define i1 @test(i1 %V) {
5
%Y = icmp ult i1 %V, false ; <i1> [#uses=1]
6
ret i1 %Y
7
}
8