Revert "[Symbolize] Use the local MSVC C++ demangler instead of relying on dbghelp...
[llvm-complete.git] / test / Linker / type-unique-opaque.ll
blobb4f696699212456dce8ce50b314744faac8af537
1 ; RUN: llvm-link -S %s %p/Inputs/type-unique-opaque.ll | FileCheck %s
3 ; Test that a failed attempt at merging %u2 and %t2 (for the other file) will
4 ; not cause %u and %t to get merged.
6 ; CHECK: %u = type opaque
7 ; CHECK: define %u* @g() {
9 %u = type opaque
10 %u2 = type { %u*, i8 }
12 declare %u2* @f()
14 define %u* @g() {
15   ret %u* null