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