mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
ab043ff680
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 llvm-svn: 230794
41 lines
1.3 KiB
LLVM
41 lines
1.3 KiB
LLVM
; RUN: opt < %s -basicaa -licm -S | FileCheck %s
|
|
@b = external global i32, align 4
|
|
@fn3.i = external global i32, align 4
|
|
|
|
declare i32 @g() nounwind
|
|
|
|
define i32 @f() {
|
|
entry:
|
|
br label %for.cond
|
|
|
|
for.cond: ; preds = %for.end, %entry
|
|
; CHECK-LABEL: for.cond:
|
|
; CHECK: store i32 0, i32* @b
|
|
store i32 0, i32* @b, align 4
|
|
br i1 true, label %for.body.preheader, label %for.end
|
|
|
|
for.body.preheader: ; preds = %for.cond
|
|
br label %for.body
|
|
|
|
for.body: ; preds = %for.body, %for.body.preheader
|
|
%g.15 = phi i32 [ undef, %for.body ], [ 0, %for.body.preheader ]
|
|
%arrayidx2 = getelementptr inbounds i32, i32* @fn3.i, i64 0
|
|
%0 = load i32, i32* %arrayidx2, align 4
|
|
%call = call i32 @g()
|
|
br i1 false, label %for.body, label %for.end.loopexit
|
|
|
|
for.end.loopexit: ; preds = %for.body
|
|
br label %for.end
|
|
|
|
for.end: ; preds = %for.end.loopexit, %for.cond
|
|
%whatever = phi i32 [ %call, %for.end.loopexit ], [ undef, %for.cond ]
|
|
br i1 false, label %for.cond, label %if.then
|
|
|
|
if.then: ; preds = %for.end
|
|
; CHECK-LABEL: if.then:
|
|
; CHECK: phi i32 [ {{.*}}, %for.end ]
|
|
; CHECK-NOT: store i32 0, i32* @b
|
|
; CHECK: ret i32
|
|
ret i32 %whatever
|
|
}
|