mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-09 13:33:17 +00:00
of using llvm-as, now that opt supports this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81226 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
140 B
LLVM
11 lines
140 B
LLVM
; RUN: opt %s -globalopt
|
|
|
|
@g = external global i32
|
|
|
|
@a = alias bitcast (i32* @g to i8*)
|
|
|
|
define void @f() {
|
|
%tmp = load i8* @a
|
|
ret void
|
|
}
|