aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.llx
blob: 8150c52bc7bb45770ef53f764437cfa271486361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; 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
}