[llvm] r181391 - Finish renaming constructImportedModuleDIE to constructImportedEntityDIE
Eric Christopher
echristo at gmail.com
Wed May 8 10:11:53 PDT 2013
Yay.
-eric
On Tue, May 7, 2013 at 11:01 PM, David Blaikie <dblaikie at gmail.com> wrote:
> Author: dblaikie
> Date: Wed May 8 01:01:38 2013
> New Revision: 181391
>
> URL: http://llvm.org/viewvc/llvm-project?rev=181391&view=rev
> Log:
> Finish renaming constructImportedModuleDIE to constructImportedEntityDIE
>
> Modified:
> llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
> llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
>
> Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=181391&r1=181390&r2=181391&view=diff
> ==============================================================================
> --- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)
> +++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Wed May 8 01:01:38 2013
> @@ -612,7 +612,7 @@ DIE *DwarfDebug::constructScopeDIE(Compi
> return NULL;
> ScopeDIE = constructLexicalScopeDIE(TheCU, Scope);
> for (ImportedEntityMap::const_iterator i = Range.first; i != Range.second; ++i)
> - constructImportedModuleDIE(TheCU, i->second, ScopeDIE);
> + constructImportedEntityDIE(TheCU, i->second, ScopeDIE);
> }
>
> if (!ScopeDIE) return NULL;
> @@ -782,18 +782,18 @@ void DwarfDebug::constructImportedEntity
> if (!Module.Verify())
> return;
> if (DIE *D = TheCU->getOrCreateContextDIE(Module.getContext()))
> - constructImportedModuleDIE(TheCU, Module, D);
> + constructImportedEntityDIE(TheCU, Module, D);
> }
>
> -void DwarfDebug::constructImportedModuleDIE(CompileUnit *TheCU, const MDNode *N,
> +void DwarfDebug::constructImportedEntityDIE(CompileUnit *TheCU, const MDNode *N,
> DIE *Context) {
> DIImportedEntity Module(N);
> if (!Module.Verify())
> return;
> - return constructImportedModuleDIE(TheCU, Module, Context);
> + return constructImportedEntityDIE(TheCU, Module, Context);
> }
>
> -void DwarfDebug::constructImportedModuleDIE(CompileUnit *TheCU,
> +void DwarfDebug::constructImportedEntityDIE(CompileUnit *TheCU,
> const DIImportedEntity &Module,
> DIE *Context) {
> assert(Module.Verify() &&
>
> Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h?rev=181391&r1=181390&r2=181391&view=diff
> ==============================================================================
> --- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h (original)
> +++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h Wed May 8 01:01:38 2013
> @@ -563,11 +563,11 @@ private:
> void constructImportedEntityDIE(CompileUnit *TheCU, const MDNode *N);
>
> /// \brief Construct import_module DIE.
> - void constructImportedModuleDIE(CompileUnit *TheCU, const MDNode *N,
> + void constructImportedEntityDIE(CompileUnit *TheCU, const MDNode *N,
> DIE *Context);
>
> /// \brief Construct import_module DIE.
> - void constructImportedModuleDIE(CompileUnit *TheCU,
> + void constructImportedEntityDIE(CompileUnit *TheCU,
> const DIImportedEntity &Module,
> DIE *Context);
>
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
More information about the llvm-commits
mailing list