summaryrefslogtreecommitdiffstats
path: root/test/Transforms/SCCP/logical-nuke.ll
blob: 02c3ac0e36f1e9a2f89ab97ad06579bbb68006dd (plain)
1
2
3
4
5
6
7
8
; RUN: llvm-upgrade < %s | llvm-as | opt -sccp | llvm-dis | grep {ret i32 0}

; Test that SCCP has basic knowledge of when and/or nuke overdefined values.

int %test(int %X) {
	%Y = and int %X, 0
	ret int %Y
}