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

11 lines
152 B
LLVM

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