[clang] [llvm] [PGO][GlobalValue][LTO]In GlobalValues::getGlobalIdentifier, use semicolon as delimiter for local-linkage varibles. (PR #74008)
Ellis Hoag via cfe-commits
cfe-commits at lists.llvm.org
Fri Dec 1 11:31:55 PST 2023
================
@@ -300,12 +316,8 @@ getIRPGONameForGlobalObject(const GlobalObject &GO,
GlobalValue::LinkageTypes Linkage,
StringRef FileName) {
SmallString<64> Name;
- if (llvm::GlobalValue::isLocalLinkage(Linkage)) {
- Name.append(FileName.empty() ? "<unknown>" : FileName);
- Name.append(";");
- }
Mangler().getNameWithPrefix(Name, &GO, /*CannotUsePrivateLabel=*/true);
----------------
ellishg wrote:
I think we can only generate the linkage name at compile time because we need to know the linkage, which `llvm-profdata` doesn't have.
https://github.com/llvm/llvm-project/pull/74008
More information about the cfe-commits
mailing list