mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +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
74 lines
2.0 KiB
LLVM
74 lines
2.0 KiB
LLVM
; RUN: llc < %s -mtriple=armv7-apple-ios | FileCheck %s
|
|
; This testcase makes sure we can handle invoke @llvm.donothing without
|
|
; assertion failure.
|
|
; <rdar://problem/13228754> & <rdar://problem/13316637>
|
|
|
|
; CHECK: .globl _foo
|
|
define void @foo() {
|
|
invoke.cont:
|
|
invoke void @callA()
|
|
to label %invoke.cont25 unwind label %lpad2
|
|
invoke.cont25:
|
|
invoke void @llvm.donothing()
|
|
to label %invoke.cont27 unwind label %lpad15
|
|
|
|
invoke.cont27:
|
|
invoke void @callB()
|
|
to label %invoke.cont75 unwind label %lpad15
|
|
|
|
invoke.cont75:
|
|
ret void
|
|
|
|
lpad2:
|
|
%0 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_sj0 to i8*)
|
|
cleanup
|
|
br label %eh.resume
|
|
|
|
lpad15:
|
|
%1 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_sj0 to i8*)
|
|
cleanup
|
|
br label %eh.resume
|
|
|
|
eh.resume:
|
|
resume { i8*, i32 } zeroinitializer
|
|
}
|
|
|
|
; CHECK: .globl _bar
|
|
define linkonce_odr void @bar(i32* %a) {
|
|
if.end.i.i.i:
|
|
invoke void @llvm.donothing()
|
|
to label %call.i.i.i.noexc unwind label %eh.resume
|
|
|
|
call.i.i.i.noexc:
|
|
br i1 false, label %cleanup, label %new.notnull.i.i
|
|
|
|
new.notnull.i.i:
|
|
br label %cleanup
|
|
|
|
cleanup:
|
|
%0 = load i32, i32* %a, align 4
|
|
%inc294 = add nsw i32 %0, 4
|
|
store i32 %inc294, i32* %a, align 4
|
|
br i1 false, label %_ZN3lol5ArrayIivvvvvvvED1Ev.exit, label %delete.notnull.i.i.i1409
|
|
|
|
delete.notnull.i.i.i1409:
|
|
br label %_ZN3lol5ArrayIivvvvvvvED1Ev.exit
|
|
|
|
_ZN3lol5ArrayIivvvvvvvED1Ev.exit:
|
|
ret void
|
|
|
|
eh.resume:
|
|
%1 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_sj0 to i8*)
|
|
cleanup
|
|
%2 = extractvalue { i8*, i32 } %1, 0
|
|
%3 = extractvalue { i8*, i32 } %1, 1
|
|
%lpad.val = insertvalue { i8*, i32 } undef, i8* %2, 0
|
|
%lpad.val395 = insertvalue { i8*, i32 } %lpad.val, i32 %3, 1
|
|
resume { i8*, i32 } %lpad.val395
|
|
}
|
|
|
|
declare void @callA()
|
|
declare void @callB()
|
|
declare void @llvm.donothing() nounwind readnone
|
|
declare i32 @__gxx_personality_sj0(...)
|