diff --git a/llvm/lib/IR/Function.cpp b/llvm/lib/IR/Function.cpp --- a/llvm/lib/IR/Function.cpp +++ b/llvm/lib/IR/Function.cpp @@ -775,10 +775,13 @@ /// indicating that extra care must be taken to ensure a unique name. static std::string getMangledTypeStr(Type *Ty, bool &HasUnnamedType) { std::string Result; - if (PointerType* PTyp = dyn_cast(Ty)) { - Result += "p" + utostr(PTyp->getAddressSpace()) + - getMangledTypeStr(PTyp->getElementType(), HasUnnamedType); - } else if (ArrayType* ATyp = dyn_cast(Ty)) { + if (PointerType *PTyp = dyn_cast(Ty)) { + Result += "p" + utostr(PTyp->getAddressSpace()); + // Opaque pointer doesn't have pointee type information, so we just mangle + // address space for opaque pointer. + if (!PTyp->isOpaque()) + Result += getMangledTypeStr(PTyp->getElementType(), HasUnnamedType); + } else if (ArrayType *ATyp = dyn_cast(Ty)) { Result += "a" + utostr(ATyp->getNumElements()) + getMangledTypeStr(ATyp->getElementType(), HasUnnamedType); } else if (StructType *STyp = dyn_cast(Ty)) { @@ -803,7 +806,7 @@ Result += "vararg"; // Ensure nested function types are distinguishable. Result += "f"; - } else if (VectorType* VTy = dyn_cast(Ty)) { + } else if (VectorType *VTy = dyn_cast(Ty)) { ElementCount EC = VTy->getElementCount(); if (EC.isScalable()) Result += "nx"; diff --git a/llvm/test/Verifier/opaque-ptr.ll b/llvm/test/Verifier/opaque-ptr.ll --- a/llvm/test/Verifier/opaque-ptr.ll +++ b/llvm/test/Verifier/opaque-ptr.ll @@ -23,3 +23,14 @@ %b = atomicrmw add ptr %a, i32 %i acquire ret void } + +define void @opaque_mangle(ptr %a) { + call void @llvm.lifetime.start.p0(i64 8, ptr %a) + call void @llvm.lifetime.end.p0(i64 8, ptr %a) + ret void +} + +; CHECK: @llvm.lifetime.start.p0 +; CHECK: @llvm.lifetime.end.p0 +declare void @llvm.lifetime.start.p0(i64, ptr nocapture) +declare void @llvm.lifetime.end.p0(i64, ptr nocapture)