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