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

llvm-svn: 210944
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
index fcc9a7c..88b8a67 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
+++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
@@ -344,7 +344,7 @@
   }
 
   /// \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,