aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/GlobalOpt/2009-02-15-BitcastAlias.ll
blob: a3e90045d64b984a67109e899b0d8f8de2c0ce1f (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: opt < %s -globalopt

@g = global i32 0

@a = alias bitcast (i32* @g to i8*)

define void @f() {
	%tmp = load i8, i8* @a
	ret void
}