diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-06-13 22:29:31 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-06-13 22:29:31 +0000 |
commit | be7c677008f7e9a59470536fe29e9b19f5d27eb1 (patch) | |
tree | c0e013f90f9ed6960825383f8693fac873d87d72 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | eb1a27239cccace33c4b89571af442ae0584f832 (diff) | |
download | bcm5719-llvm-be7c677008f7e9a59470536fe29e9b19f5d27eb1.tar.gz bcm5719-llvm-be7c677008f7e9a59470536fe29e9b19f5d27eb1.zip |
DwarfDebug::getExistingAbstractVariable: constify an existing reference parameter that didn't need to be mutated.
llvm-svn: 210944
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index fcc9a7c80dc..88b8a674b3e 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -344,7 +344,7 @@ class DwarfDebug : public AsmPrinterHandler { } /// \brief Find abstract variable associated with Var. - DbgVariable *getExistingAbstractVariable(DIVariable &DV, + DbgVariable *getExistingAbstractVariable(const DIVariable &DV, DIVariable &Cleansed); DbgVariable *createAbstractVariable(DIVariable &DV, LexicalScope *Scope); DbgVariable *getOrCreateAbstractVariable(DIVariable &Var, |