Skip to content

Commit 22e243b

Browse files
committed
[llvm-project] Revert the clang patch fixing ROOT-7775
Revert the patch: `Fix ROOT-7775 by making all static init function name unique.`
1 parent 4bcc584 commit 22e243b

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

interpreter/llvm-project/clang/lib/CodeGen/CGDeclCXX.cpp

+1-11
Original file line numberDiff line numberDiff line change
@@ -540,19 +540,9 @@ CodeGenModule::EmitCXXGlobalVarDeclInitFunc(const VarDecl *D,
540540
getCXXABI().getMangleContext().mangleDynamicInitializer(D, Out);
541541
}
542542

543-
// Use the module name to make the initializer unique accross modules.
544-
SmallString<128> moduleName(TheModule.getName());
545-
for (size_t i = 0; i < moduleName.size(); ++i) {
546-
// Replace everything that's not [a-zA-Z0-9._] with a _. This set happens
547-
// to be the set of C preprocessing numbers.
548-
if (!isPreprocessingNumberBody(moduleName[i]))
549-
moduleName[i] = '_';
550-
}
551-
552543
// Create a variable initialization function.
553544
llvm::Function *Fn = CreateGlobalInitOrCleanUpFunction(
554-
FTy, llvm::Twine(FnName)+moduleName.str() + "_",
555-
getTypes().arrangeNullaryFunction(), D->getLocation());
545+
FTy, FnName.str(), getTypes().arrangeNullaryFunction(), D->getLocation());
556546

557547
auto *ISA = D->getAttr<InitSegAttr>();
558548
CodeGenFunction(*this).GenerateCXXGlobalVarDeclInitFunc(Fn, D, Addr,
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ROOT-llvm18-20250113-01
1+
ROOT-llvm18-20250117-01

0 commit comments

Comments
 (0)