2006-12-02 04:23:10 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -sccp | llvm-dis | grep 'ret int 0'
|
2004-12-11 23:14:40 +00:00
|
|
|
|
|
|
|
; 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
|
|
|
|
}
|