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

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