mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 17:34:41 +00:00
New testcase for bug
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2670 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
618b4a11bb
commit
7add8bdc08
20
test/Transforms/SCCP/2002-05-20-MissedIncomingValue.ll
Normal file
20
test/Transforms/SCCP/2002-05-20-MissedIncomingValue.ll
Normal file
@ -0,0 +1,20 @@
|
||||
; This test shows a case where SCCP is incorrectly eliminating the PHI node
|
||||
; because it thinks it has a constant 0 value, when it really doesn't.
|
||||
|
||||
; RUN: as < %s | opt -sccp | dis | grep phi
|
||||
|
||||
int "test"(int %A, bool %c) {
|
||||
bb1:
|
||||
br label %BB2
|
||||
BB2:
|
||||
%V = phi int [0, %bb1], [%A, %BB4]
|
||||
br label %BB3
|
||||
|
||||
BB3:
|
||||
br bool %c, label %BB4, label %BB5
|
||||
BB4:
|
||||
br label %BB2
|
||||
|
||||
BB5:
|
||||
ret int %V
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user