mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-30 16:53:02 +00:00
new testcase for more interesting select sccp cases
llvm-svn: 26048
This commit is contained in:
parent
50f604c041
commit
0f370256ad
12
test/Regression/Transforms/SCCP/select.ll
Normal file
12
test/Regression/Transforms/SCCP/select.ll
Normal file
@ -0,0 +1,12 @@
|
||||
; RUN: llvm-as < %s | opt -sccp -disable-output &&
|
||||
; RUN: llvm-as < %s | opt -sccp | llvm-dis | not grep select
|
||||
|
||||
int %test1(bool %C) {
|
||||
%X = select bool %C, int 0, int 0
|
||||
ret int %X
|
||||
}
|
||||
|
||||
int %test2(bool %C) {
|
||||
%X = select bool %C, int 0, int undef
|
||||
ret int %X
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user