mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 06:33:21 +00:00
35b78fd04c
Argument promotion can replace an argument of a call with an alloca. This requires clearing the tail marker as it is very likely that the callee is now using an alloca in the caller. This fixes pr14710. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199909 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
437 B
LLVM
20 lines
437 B
LLVM
; RUN: opt %s -argpromotion -S -o - | FileCheck %s
|
|
|
|
%pair = type { i32, i32 }
|
|
|
|
declare i8* @foo(%pair*)
|
|
|
|
define internal void @bar(%pair* byval %Data) {
|
|
; CHECK: define internal void @bar(i32 %Data.0, i32 %Data.1)
|
|
; CHECK: %Data = alloca %pair
|
|
; CHECK-NOT: tail
|
|
; CHECK: call i8* @foo(%pair* %Data)
|
|
tail call i8* @foo(%pair* %Data)
|
|
ret void
|
|
}
|
|
|
|
define void @zed(%pair* byval %Data) {
|
|
call void @bar(%pair* byval %Data)
|
|
ret void
|
|
}
|