mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5794 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fb242b6edc
commit
843c80f7a3
14
test/Transforms/IndVarsSimplify/2003-04-16-ExprAnalysis.ll
Normal file
14
test/Transforms/IndVarsSimplify/2003-04-16-ExprAnalysis.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; This is a test case for the expression analysis code, not really indvars.
|
||||
; It was assuming any constant of int type was a ConstantInteger.
|
||||
;
|
||||
; RUN: as < %s | opt -indvars
|
||||
|
||||
%X = global int 7
|
||||
|
||||
void %test(int %A) {
|
||||
br label %Loop
|
||||
Loop:
|
||||
%IV = phi int [%A, %0], [%IVNext, %Loop]
|
||||
%IVNext = add int %IV, cast (int* %X to int)
|
||||
br label %Loop
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user