mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Add a testcase we should continue to argpromote
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17717 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
78d223e1fb
commit
32e7a80cdb
20
test/Transforms/ArgumentPromotion/control-flow2.ll
Normal file
20
test/Transforms/ArgumentPromotion/control-flow2.ll
Normal file
@ -0,0 +1,20 @@
|
||||
; RUN: llvm-as < %s | opt -argpromotion | llvm-dis | grep 'load int\* %A'
|
||||
|
||||
implementation
|
||||
|
||||
internal int %callee(bool %C, int* %P) {
|
||||
br bool %C, label %T, label %F
|
||||
T:
|
||||
ret int 17
|
||||
F:
|
||||
%X = load int* %P
|
||||
ret int %X
|
||||
}
|
||||
|
||||
int %foo() {
|
||||
%A = alloca int
|
||||
store int 17, int* %A
|
||||
%X = call int %callee(bool false, int* %A)
|
||||
ret int %X
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user