summaryrefslogtreecommitdiff
path: root/test/Transforms/GlobalOpt/malloc-promote-2.llx
blob: f231963f57e37f932947e37efbb7302c008cb630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep malloc

%G = internal global int* null

void %init() {
	%P = malloc int, uint 100
	store int* %P, int** %G

	%GV = load int** %G
	%GVe = getelementptr int* %GV, int 40
	store int 20, int* %GVe
	ret void
}

int %get() {
	%GV = load int** %G
	%GVe = getelementptr int* %GV, int 40
	%V = load int* %GVe
	ret int %V
}