blob: f164abd586d1ad7afc5c0568596b1fc515758114 (
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, %A* null, i32 0
ret void
}
|