mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Add a testcase we should continue to argpromote
llvm-svn: 17717
This commit is contained in:
parent
d366a95a6c
commit
3932e83c0e
@ -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