summaryrefslogtreecommitdiff
path: root/test/Transforms/GlobalOpt/trivialstore.llx
blob: 8b1f1ce52504ebf663c4dfaeac7e33433c771f64 (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 | llvm-dis | not grep G

%G = internal global int 17

void %foo() {
	store int 17, int* %G   ;; Doesn't change the value
	ret void
}
int %bar() {
	%X = load int* %G
	ret int %X
}

internal void %dead() {
	store int 123, int* %G
	ret void
}