1 ; RUN: opt -mergefunc -disable-output < %s
3 ; A linked list type and simple payload
4 %LL = type { %S, %LL* }
5 %S = type { void (%S*, i32)* }
7 ; Table refers to itself via GEP
8 @Table = internal global [3 x %LL] [%LL { %S { void (%S*, i32)* @B }, %LL* getelementptr inbounds ([3 x %LL], [3 x %LL]* @Table, i32 0, i32 0) }, %LL { %S { void (%S*, i32)* @A }, %LL* getelementptr inbounds ([3 x %LL], [3 x %LL]* @Table, i32 0, i32 0) }, %LL { %S { void (%S*, i32)* @A }, %LL* getelementptr inbounds ([3 x %LL], [3 x %LL]* @Table, i32 0, i32 0) }], align 16
10 ; The body of this is irrelevant; it is long so that mergefunc doesn't skip it as a small function.
11 define internal void @A(%S* %self, i32 %a) {
26 define internal void @B(%S* %self, i32 %a) {