mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-02 10:33:53 +00:00
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10374 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
66ea98e85c
commit
7277826d7e
23
test/Transforms/IndVarsSimplify/2003-12-10-IndVarDeadCode.ll
Normal file
23
test/Transforms/IndVarsSimplify/2003-12-10-IndVarDeadCode.ll
Normal file
@ -0,0 +1,23 @@
|
||||
; The induction variable canonicalization pass shouldn't leave dead
|
||||
; instructions laying around!
|
||||
;
|
||||
; RUN: llvm-as < %s | opt -indvars | llvm-dis | not grep '#uses=0'
|
||||
|
||||
int %mul(int %x, int %y) {
|
||||
entry:
|
||||
br label %tailrecurse
|
||||
|
||||
tailrecurse: ; preds = %entry, %endif
|
||||
%accumulator.tr = phi int [ %x, %entry ], [ %tmp.9, %endif ] ; <int> [#uses=2]
|
||||
%y.tr = phi int [ %y, %entry ], [ %tmp.8, %endif ] ; <int> [#uses=2]
|
||||
%tmp.1 = seteq int %y.tr, 0 ; <bool> [#uses=1]
|
||||
br bool %tmp.1, label %return, label %endif
|
||||
|
||||
endif: ; preds = %tailrecurse
|
||||
%tmp.8 = add int %y.tr, -1 ; <int> [#uses=1]
|
||||
%tmp.9 = add int %accumulator.tr, %x ; <int> [#uses=1]
|
||||
br label %tailrecurse
|
||||
|
||||
return: ; preds = %tailrecurse
|
||||
ret int %accumulator.tr
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user