aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/SCCP/2006-12-19-UndefBug.ll
blob: e991818b6c92e6c2ef3524e4cef4b1843835afb2 (plain)
1
2
3
4
5
6
7
; RUN: llvm-upgrade < %s | llvm-as | opt -sccp | llvm-dis | \
; RUN:   grep 'ret i1 false'

bool %foo() {
	%X = and bool false, undef
	ret bool %X
}