mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-07 04:21:39 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
343 B
LLVM
21 lines
343 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | 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
|
|
}
|
|
|