mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
592 B
LLVM
17 lines
592 B
LLVM
; Promoting some values allows promotion of other values.
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -mem2reg | llvm-dis | not grep alloca
|
|
|
|
int %test2() {
|
|
%result = alloca int ; ty=int*
|
|
%a = alloca int ; ty=int*
|
|
%p = alloca int* ; ty=int**
|
|
store int 0, int* %a
|
|
store int* %a, int** %p
|
|
%tmp.0 = load int** %p ; ty=int*
|
|
%tmp.1 = load int* %tmp.0 ; ty=int
|
|
store int %tmp.1, int* %result
|
|
%tmp.2 = load int* %result ; ty=int
|
|
ret int %tmp.2
|
|
}
|
|
|