• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: opt < %s -sccp -S | \
2; RUN:   grep {ret i1 false}
3
4define i1 @foo() {
5	%X = and i1 false, undef		; <i1> [#uses=1]
6	ret i1 %X
7}
8
9