summaryrefslogtreecommitdiff
path: root/test/Transforms/Internalize/2009-01-05-InternalizeAliases.ll
blob: 023801effbb28013c3ecd8b3e00cb5188e287f0c (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: opt %s -internalize | llvm-dis | grep internal | count 3

@A = global i32 0
@B = alias i32* @A
@C = alias i32* @B

define i32 @main() {
	%tmp = load i32* @C
	ret i32 %tmp
}