a3e90045d64b984a67109e899b0d8f8de2c0ce1f
[oota-llvm.git] / test / Transforms / GlobalOpt / 2009-02-15-BitcastAlias.ll
1 ; RUN: opt < %s -globalopt
2
3 @g = global i32 0
4
5 @a = alias bitcast (i32* @g to i8*)
6
7 define void @f() {
8         %tmp = load i8, i8* @a
9         ret void
10 }