mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
New testcase
llvm-svn: 2718
This commit is contained in:
parent
d7932ecdd3
commit
96c2241685
13
test/Regression/Transforms/ADCE/2002-05-22-PHITest.ll
Normal file
13
test/Regression/Transforms/ADCE/2002-05-22-PHITest.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; It is illegal to remove BB1 because it will mess up the PHI node!
|
||||
;
|
||||
; RUN: as < %s | opt -adce | dis | grep BB1
|
||||
|
||||
|
||||
int "test"(bool %C, int %A, int %B) {
|
||||
br bool %C, label %BB1, label %BB2
|
||||
BB1:
|
||||
br label %BB2
|
||||
BB2:
|
||||
%R = phi int [%A, %0], [%B, %BB1]
|
||||
ret int %R
|
||||
}
|
Loading…
Reference in New Issue
Block a user