mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12192 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
13d362f310
commit
b9f266a609
24
test/Transforms/ArgumentPromotion/basictest.ll
Normal file
24
test/Transforms/ArgumentPromotion/basictest.ll
Normal file
@ -0,0 +1,24 @@
|
||||
; RUN: llvm-as < %s | opt -argpromotion -mem2reg | llvm-dis | not grep alloca
|
||||
|
||||
implementation
|
||||
|
||||
internal int %test(int *%X, int* %Y) {
|
||||
%A = load int* %X
|
||||
%B = load int* %Y
|
||||
%C = add int %A, %B
|
||||
ret int %C
|
||||
}
|
||||
|
||||
internal int %caller(int* %B) {
|
||||
%A = alloca int
|
||||
store int 1, int* %A
|
||||
%C = call int %test(int* %A, int* %B)
|
||||
ret int %C
|
||||
}
|
||||
|
||||
int %callercaller() {
|
||||
%B = alloca int
|
||||
store int 2, int* %B
|
||||
%X = call int %caller(int* %B)
|
||||
ret int %X
|
||||
}
|
Loading…
Reference in New Issue
Block a user