mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
7f5ef2d7a5
llvm-svn: 32115
18 lines
379 B
LLVM
18 lines
379 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -argpromotion | llvm-dis | grep x.val
|
|
; XFAIL: *
|
|
|
|
implementation ; Functions:
|
|
|
|
internal int %foo(int* %x) {
|
|
entry:
|
|
%tmp = load int* %x
|
|
%tmp.foo = call int %foo(int *%x)
|
|
ret int %tmp.foo
|
|
}
|
|
|
|
int %bar(int* %x) {
|
|
entry:
|
|
%tmp3 = call int %foo( int* %x) ; <int>[#uses=1]
|
|
ret int %tmp3
|
|
}
|