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

%G = internal global int* null

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

	%GV = load int** %G
	store int 0, int* %GV
	ret void
}

int %get() {
	%GV = load int** %G
	%V = load int* %GV
	ret int %V
}