| ; RUN: opt -mergefunc -disable-output < %s |
| ; A linked list type and simple payload |
| %S = type { void (%S*, i32)* } |
| ; Table refers to itself via GEP |
| @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 |
| ; The body of this is irrelevant; it is long so that mergefunc doesn't skip it as a small function. |
| define internal void @A(%S* %self, i32 %a) { |
| define internal void @B(%S* %self, i32 %a) { |