mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 06:29:59 +00:00
new testcase for cananonicalization of subtracts
llvm-svn: 10581
This commit is contained in:
parent
1f0b2be06c
commit
fad88d03ee
12
test/Regression/Transforms/IndVarsSimplify/subtract.ll
Normal file
12
test/Regression/Transforms/IndVarsSimplify/subtract.ll
Normal file
@ -0,0 +1,12 @@
|
||||
; RUN: llvm-as < %s | opt -indvars | llvm-dis | grep indvar
|
||||
|
||||
%G = global long 0
|
||||
|
||||
void %test(long %V) {
|
||||
br label %Loop
|
||||
Loop:
|
||||
%X = phi long [1, %0], [%X.next, %Loop]
|
||||
%X.next = sub long %X, %V
|
||||
store long %X, long* %G
|
||||
br label %Loop
|
||||
}
|
Loading…
Reference in New Issue
Block a user