[llvm] [NFC][Cloning] Make DifferentModule case more obvious in CollectDebugInfoForCloning (PR #129146)
Artem Pianykh via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 04:19:04 PDT 2025
================
@@ -147,8 +147,10 @@ void llvm::CloneFunctionAttributesInto(Function *NewFunc,
DISubprogram *llvm::CollectDebugInfoForCloning(const Function &F,
CloneFunctionChangeType Changes,
DebugInfoFinder &DIFinder) {
- // CloneModule takes care of cloning debug info.
- if (Changes == CloneFunctionChangeType::ClonedModule)
+ // CloneModule takes care of cloning debug info for ClonedModule. Cloning into
+ // DifferentModule is taken care of separately in ClonedFunctionInto as part
+ // of llvm.dbg.cu update.
+ if (Changes >= CloneFunctionChangeType::DifferentModule)
----------------
artempyanykh wrote:
Given that FindDebugInfoToIdentityMap and CollectDebugInfoForCloning get removed later in the stack, I'm going to go ahead and merge this. Please, let me know if I missed something important and I'll fix it on top.
https://github.com/llvm/llvm-project/pull/129146
More information about the llvm-commits
mailing list