diff options
Diffstat (limited to 'llvm/test/Linker')
| -rw-r--r-- | llvm/test/Linker/Inputs/pr22807-1.ll | 6 | ||||
| -rw-r--r-- | llvm/test/Linker/Inputs/pr22807-2.ll | 6 | ||||
| -rw-r--r-- | llvm/test/Linker/pr22807.ll | 13 |
3 files changed, 25 insertions, 0 deletions
diff --git a/llvm/test/Linker/Inputs/pr22807-1.ll b/llvm/test/Linker/Inputs/pr22807-1.ll new file mode 100644 index 00000000000..4081a9b00e4 --- /dev/null +++ b/llvm/test/Linker/Inputs/pr22807-1.ll @@ -0,0 +1,6 @@ +%struct.A = type { %struct.B* } +%struct.B = type opaque + +define i32 @foo(%struct.A** %A) { + ret i32 0 +} diff --git a/llvm/test/Linker/Inputs/pr22807-2.ll b/llvm/test/Linker/Inputs/pr22807-2.ll new file mode 100644 index 00000000000..7739b77df25 --- /dev/null +++ b/llvm/test/Linker/Inputs/pr22807-2.ll @@ -0,0 +1,6 @@ +%struct.A = type { %struct.B* } +%struct.B = type opaque + +define i32 @bar(%struct.A* %A) { + ret i32 0 +} diff --git a/llvm/test/Linker/pr22807.ll b/llvm/test/Linker/pr22807.ll new file mode 100644 index 00000000000..bb4ca2b4ccf --- /dev/null +++ b/llvm/test/Linker/pr22807.ll @@ -0,0 +1,13 @@ +; RUN: llvm-link -S -o - %p/pr22807.ll %p/Inputs/pr22807-1.ll %p/Inputs/pr22807-2.ll | FileCheck %s + +; CHECK-NOT: type +; CHECK: %struct.B = type { %struct.A* } +; CHECK-NEXT: %struct.A = type { %struct.B* } +; CHECK-NOT: type + +%struct.B = type { %struct.A* } +%struct.A = type opaque + +define i32 @baz(%struct.B* %BB) { + ret i32 0 +} |

