aboutsummaryrefslogtreecommitdiffstats
path: root/test/Linker/Inputs/opaque.ll
blob: 2b0d7d3cea8b84a56c1f5a12ec6db5ffacdbadfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%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
}