OSDN Git Service

Update aosp/master LLVM for rebase to r256229
[android-x86/external-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 i8, bitcast (i32* @g to i8*)
6
7 define void @f() {
8         %tmp = load i8, i8* @a
9         ret void
10 }