mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
5a70dd1d82
Similar to gep (r230786) and load (r230794) changes. Similar migration script can be used to update test cases, which successfully migrated all of LLVM and Polly, but about 4 test cases needed manually changes in Clang. (this script will read the contents of stdin and massage it into stdout - wrap it in the 'apply.sh' script shown in previous commits + xargs to apply it over a large set of test cases) import fileinput import sys import re rep = re.compile(r"(getelementptr(?:\s+inbounds)?\s*\()((<\d*\s+x\s+)?([^@]*?)(|\s*addrspace\(\d+\))\s*\*(?(3)>)\s*)(?=$|%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|zeroinitializer|<|\[\[[a-zA-Z]|\{\{)", re.MULTILINE | re.DOTALL) def conv(match): line = match.group(1) line += match.group(4) line += ", " line += match.group(2) return line line = sys.stdin.read() off = 0 for match in re.finditer(rep, line): sys.stdout.write(line[off:match.start()]) sys.stdout.write(conv(match)) off = match.end() sys.stdout.write(line[off:]) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232184 91177308-0d34-0410-b5e6-96231b3b80d8
44 lines
1.6 KiB
LLVM
44 lines
1.6 KiB
LLVM
; RUN: opt < %s -basicaa -globalopt -instcombine -loop-rotate -licm -instcombine -indvars -loop-deletion -constmerge -S | FileCheck %s
|
|
; PR11882: ComputeLoadConstantCompareExitLimit crash.
|
|
;
|
|
; for.body is deleted leaving a loop-invariant load.
|
|
; CHECK-NOT: for.body
|
|
target datalayout = "e-p:64:64:64-n32:64"
|
|
|
|
@func_21_l_773 = external global i32, align 4
|
|
@g_814 = external global i32, align 4
|
|
@g_244 = internal global [1 x [0 x i32]] zeroinitializer, align 4
|
|
|
|
define void @func_21() nounwind uwtable ssp {
|
|
entry:
|
|
br label %lbl_818
|
|
|
|
lbl_818: ; preds = %for.end, %entry
|
|
call void (...)* @func_27()
|
|
store i32 0, i32* @g_814, align 4
|
|
br label %for.cond
|
|
|
|
for.cond: ; preds = %for.body, %lbl_818
|
|
%0 = load i32, i32* @g_814, align 4
|
|
%cmp = icmp sle i32 %0, 0
|
|
br i1 %cmp, label %for.body, label %for.end
|
|
|
|
for.body: ; preds = %for.cond
|
|
%idxprom = sext i32 %0 to i64
|
|
%arrayidx = getelementptr inbounds [0 x i32], [0 x i32]* getelementptr inbounds ([1 x [0 x i32]], [1 x [0 x i32]]* @g_244, i32 0, i64 0), i32 0, i64 %idxprom
|
|
%1 = load i32, i32* %arrayidx, align 1
|
|
store i32 %1, i32* @func_21_l_773, align 4
|
|
store i32 1, i32* @g_814, align 4
|
|
br label %for.cond
|
|
|
|
for.end: ; preds = %for.cond
|
|
%2 = load i32, i32* @func_21_l_773, align 4
|
|
%tobool = icmp ne i32 %2, 0
|
|
br i1 %tobool, label %lbl_818, label %if.end
|
|
|
|
if.end: ; preds = %for.end
|
|
ret void
|
|
}
|
|
|
|
declare void @func_27(...)
|