summaryrefslogtreecommitdiff
path: root/test/Transforms/SCCP/logical-nuke.ll
blob: 446e99e0391699265e6dd4639e30c5c73f6a0a88 (plain)
1
2
3
4
5
6
7
8
; RUN: llvm-upgrade < %s | llvm-as | opt -sccp | llvm-dis | grep 'ret int 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
}