mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
14 lines
193 B
LLVM
14 lines
193 B
LLVM
|
%A = type { }
|
||
|
%B = type { %D, %E, %B* }
|
||
|
|
||
|
%D = type { %E }
|
||
|
%E = type opaque
|
||
|
|
||
|
@g2 = external global %A
|
||
|
@g3 = external global %B
|
||
|
|
||
|
define void @f1() {
|
||
|
getelementptr %A* null, i32 0
|
||
|
ret void
|
||
|
}
|