[llvm] [NFC][Cloning] Make DifferentModule case more obvious in CollectDebugInfoForCloning (PR #129146)
Artem Pianykh via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 11:16:09 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:
@felipepiovezan sorry I didn't get that. Could you elaborate please?
https://github.com/llvm/llvm-project/pull/129146
More information about the llvm-commits
mailing list