summaryrefslogtreecommitdiff
path: root/test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.llx
blob: 67d0dbc266d2734c4262690b1f8554b3910cc92b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: llvm-as < %s | 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
}