diff options
author | Eric Christopher <echristo@gmail.com> | 2013-06-24 21:07:27 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-06-24 21:07:27 +0000 |
commit | bf2d23c0d70bc78110037fae474778ae8ba6a013 (patch) | |
tree | ada69195c7e2c0ea5bc82e59f9dded42bcc33708 /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | |
parent | d0ee1294c1d5404f6e96528e154ba23e96c08297 (diff) | |
download | bcm5719-llvm-bf2d23c0d70bc78110037fae474778ae8ba6a013.tar.gz bcm5719-llvm-bf2d23c0d70bc78110037fae474778ae8ba6a013.zip |
Use const references instead of pointers to references that are
never modified. No functional change.
llvm-svn: 184781
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h index 36f5652ed68..6a370809f23 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h @@ -96,7 +96,7 @@ class CompileUnit { public: CompileUnit(unsigned UID, unsigned L, DIE *D, const MDNode *N, AsmPrinter *A, - DwarfDebug *DW, DwarfUnits *DWU); + DwarfDebug *DW, DwarfUnits *DWU); ~CompileUnit(); // Accessors. @@ -282,7 +282,7 @@ public: /// (navigating the extra location information encoded in the type) based on /// the starting location. Add the DWARF information to the die. /// - void addComplexAddress(DbgVariable *&DV, DIE *Die, unsigned Attribute, + void addComplexAddress(const DbgVariable &DV, DIE *Die, unsigned Attribute, const MachineLocation &Location); // FIXME: Should be reformulated in terms of addComplexAddress. @@ -292,12 +292,13 @@ public: /// starting location. Add the DWARF information to the die. Obsolete, /// please use addComplexAddress instead. /// - void addBlockByrefAddress(DbgVariable *&DV, DIE *Die, unsigned Attribute, + void addBlockByrefAddress(const DbgVariable &DV, DIE *Die, unsigned Attribute, const MachineLocation &Location); /// addVariableAddress - Add DW_AT_location attribute for a /// DbgVariable based on provided MachineLocation. - void addVariableAddress(DbgVariable *&DV, DIE *Die, MachineLocation Location); + void addVariableAddress(const DbgVariable &DV, DIE *Die, + MachineLocation Location); /// addToContextOwner - Add Die into the list of its context owner's children. void addToContextOwner(DIE *Die, DIDescriptor Context); |