[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / Linker / type-unique-name.ll
blob191b6ddb2352f8ea3c6bb3748a44a788d2546832
1 ; RUN: llvm-link -S %s %p/Inputs/type-unique-name.ll | FileCheck %s
3 ; Test that we keep the type name
4 ; CHECK: %abc = type { i8 }
6 %abc = type opaque
8 declare %abc* @f()
10 define %abc* @g() {
11   %x = call %abc* @f()
12   ret %abc* %x