1
0
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:
Chris Lattner 2004-11-13 23:30:22 +00:00
parent d366a95a6c
commit 3932e83c0e

View 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
}