Change these tests to feed the assembly files to opt directly, instead
[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 }