DwarfDebug::getExistingAbstractVariable: constify an existing reference parameter that didn't need to be mutated.

llvm-svn: 210944
This commit is contained in:
David Blaikie 2014-06-13 22:29:31 +00:00
parent eb1a27239c
commit be7c677008
2 changed files with 2 additions and 2 deletions

View File

@ -1066,7 +1066,7 @@ void DwarfDebug::endModule() {
}
// Find abstract variable, if any, associated with Var.
DbgVariable *DwarfDebug::getExistingAbstractVariable(DIVariable &DV,
DbgVariable *DwarfDebug::getExistingAbstractVariable(const DIVariable &DV,
DIVariable &Cleansed) {
LLVMContext &Ctx = DV->getContext();
// More then one inlined variable corresponds to one abstract variable.

View File

@ -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,