mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
Make sure to not accidentally get a bogus tail marker
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21735 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1430ef134d
commit
2f4251bfbe
16
test/Transforms/Inline/inline-tail.ll
Normal file
16
test/Transforms/Inline/inline-tail.ll
Normal file
@ -0,0 +1,16 @@
|
||||
; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep tail
|
||||
|
||||
implementation
|
||||
|
||||
declare void %bar(int*)
|
||||
|
||||
internal void %foo(int* %P) { ;; to be inlined
|
||||
tail call void %bar(int* %P)
|
||||
ret void
|
||||
}
|
||||
|
||||
void %caller() {
|
||||
%A = alloca int
|
||||
call void %foo(int* %A) ;; not a tail call
|
||||
ret void
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user