llvm-6502/test/Transforms/LoopRotate/indirectbr.ll
David Blaikie 7c9c6ed761 [opaque pointer type] Add textual IR support for explicit type parameter to load instruction
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
2015-02-27 21:17:42 +00:00

44 lines
1.6 KiB
LLVM

; RUN: opt < %s -S -loop-rotate -disable-output -verify-loop-info -verify-dom-info
; PR5502
define void @z80_do_opcodes() nounwind {
entry:
br label %while.cond
while.cond: ; preds = %end_opcode, %entry
br label %while.body
while.body: ; preds = %while.cond
br label %indirectgoto
run_opcode: ; preds = %indirectgoto
%tmp276 = load i8, i8* undef ; <i8> [#uses=1]
br label %indirectgoto
if.else295: ; preds = %divide_late
br label %end_opcode
end_opcode: ; preds = %indirectgoto, %sw.default42406, %sw.default, %if.else295
%opcode.2 = phi i8 [ %opcode.0, %indirectgoto ], [ 0, %sw.default42406 ], [ undef, %sw.default ], [ %opcode.0, %if.else295 ] ; <i8> [#uses=0]
switch i32 undef, label %while.cond [
i32 221, label %sw.bb11691
i32 253, label %sw.bb30351
]
sw.bb11691: ; preds = %end_opcode
br label %sw.default
sw.default: ; preds = %sw.bb11691
br label %end_opcode
sw.bb30351: ; preds = %end_opcode
br label %sw.default42406
sw.default42406: ; preds = %sw.bb30351
br label %end_opcode
indirectgoto: ; preds = %run_opcode, %while.body
%opcode.0 = phi i8 [ undef, %while.body ], [ %tmp276, %run_opcode ] ; <i8> [#uses=2]
indirectbr i8* undef, [label %run_opcode, label %if.else295, label %end_opcode]
}