llvm-6502/test/Linker/Inputs/opaque.ll
2014-11-28 15:45:31 +00:00

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
}