mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +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
22 lines
581 B
LLVM
22 lines
581 B
LLVM
; RUN: llc -mtriple=arm-eabi %s -o /dev/null
|
|
|
|
@handler_installed.6144.b = external global i1 ; <i1*> [#uses=1]
|
|
|
|
define void @__mf_sigusr1_respond() {
|
|
entry:
|
|
%tmp8.b = load i1, i1* @handler_installed.6144.b ; <i1> [#uses=1]
|
|
br i1 false, label %cond_true7, label %cond_next
|
|
|
|
cond_next: ; preds = %entry
|
|
br i1 %tmp8.b, label %bb, label %cond_next3
|
|
|
|
cond_next3: ; preds = %cond_next
|
|
ret void
|
|
|
|
bb: ; preds = %cond_next
|
|
ret void
|
|
|
|
cond_true7: ; preds = %entry
|
|
ret void
|
|
}
|