mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-16 11:05:54 +00:00
eb7d818969
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103720 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
819 B
LLVM
29 lines
819 B
LLVM
; RUN: opt %s -inline -mergefunc -disable-output
|
|
|
|
; This tests for a bug where the inliner kept the functions in a ValueMap after
|
|
; it had completed and a ModulePass started to run. LLVM would crash deleting
|
|
; a function that was still a key in the ValueMap.
|
|
|
|
define internal fastcc void @list_Cdr1918() nounwind inlinehint {
|
|
unreachable
|
|
}
|
|
|
|
define internal fastcc void @list_PairSecond1927() nounwind inlinehint {
|
|
call fastcc void @list_Cdr1918() nounwind inlinehint
|
|
unreachable
|
|
}
|
|
|
|
define internal fastcc void @list_Cdr3164() nounwind inlinehint {
|
|
unreachable
|
|
}
|
|
|
|
define internal fastcc void @list_Nconc3167() nounwind inlinehint {
|
|
call fastcc void @list_Cdr3164() nounwind inlinehint
|
|
unreachable
|
|
}
|
|
|
|
define void @term_Equal() nounwind {
|
|
call fastcc void @list_Cdr3164() nounwind inlinehint
|
|
unreachable
|
|
}
|