summaryrefslogtreecommitdiff
path: root/test/Linker/multiple-merged-structs.ll
blob: 348cd89bbc4c7bb540914bc07c48b7a4eecb15ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: echo {%bug_type = type opaque \
; RUN:     declare i32 @bug_a(%bug_type*) \
; RUN:     declare i32 @bug_b(%bug_type*) } > %t.ll
; RUN: llvm-link %t.ll %s
; PR11464

%bug_type = type { %bug_type* }
%bar = type { i32 }

define i32 @bug_a(%bug_type* %fp) nounwind uwtable {
entry:
  %d_stream = getelementptr inbounds %bug_type* %fp, i64 0, i32 0
  ret i32 0
}

define i32 @bug_b(%bar* %a) nounwind uwtable {
entry:
  ret i32 0
}