mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
4572ce85b0
llvm-svn: 33296
18 lines
262 B
Plaintext
18 lines
262 B
Plaintext
; RUN: llvm-upgrade < %s | llvm-as | opt -globalopt
|
|
|
|
%V = global float 12.0
|
|
%G = internal global int* null
|
|
|
|
int %user() {
|
|
%P = load int** %G
|
|
%Q = load int* %P
|
|
ret int %Q
|
|
}
|
|
|
|
void %setter() {
|
|
%Vi = cast float* %V to int*
|
|
store int* %Vi, int** %G
|
|
ret void
|
|
}
|
|
|