mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
7c9c6ed761
Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
38 lines
778 B
LLVM
38 lines
778 B
LLVM
;; RUN: opt -S < %s -indvars | FileCheck %s
|
|
|
|
;; Check if IndVarSimplify understands !range metadata.
|
|
|
|
declare void @abort()
|
|
|
|
define i1 @iterate(i32* nocapture readonly %buffer) {
|
|
entry:
|
|
%length = load i32, i32* %buffer, !range !0
|
|
br label %loop.preheader
|
|
|
|
loop.preheader:
|
|
br label %loop
|
|
|
|
loop:
|
|
%idx = phi i32 [ %idx.inc, %loop.next ], [ 0, %loop.preheader ]
|
|
%oob.pred = icmp slt i32 %idx, %length
|
|
br i1 %oob.pred, label %loop.next, label %oob
|
|
; CHECK: br i1 true, label %loop.next, label %oob
|
|
|
|
loop.next:
|
|
%idx.inc = add i32 %idx, 1
|
|
%exit.pred = icmp slt i32 %idx.inc, %length
|
|
br i1 %exit.pred, label %loop, label %abort.loopexit
|
|
|
|
abort.loopexit:
|
|
br label %abort
|
|
|
|
abort:
|
|
ret i1 false
|
|
|
|
oob:
|
|
tail call void @abort()
|
|
ret i1 false
|
|
}
|
|
|
|
!0 = !{i32 1, i32 100}
|