llvm-6502/test/Transforms/GlobalOpt/2009-02-15-BitcastAlias.ll

11 lines
135 B
LLVM
Raw Normal View History

; RUN: opt < %s -globalopt
@g = global i32 0
@a = alias bitcast (i32* @g to i8*)
define void @f() {
%tmp = load i8* @a
ret void
}