DebugInfo: Move argument creation up into the caller that's unambiguously handling...
[oota-llvm.git] / lib / CodeGen / AsmPrinter / DebugLocEntry.h
index eae150acbfb2ae79ce8d0ffeea822f4230c716be..6af049ad683fb5e08a3bfc19ce9c3b81b33ae044 100644 (file)
@@ -118,7 +118,7 @@ public:
 
   const MCSymbol *getBeginSym() const { return Begin; }
   const MCSymbol *getEndSym() const { return End; }
-  const ArrayRef<Value> getValues() const { return Values; }
+  ArrayRef<Value> getValues() const { return Values; }
   void addValues(ArrayRef<DebugLocEntry::Value> Vals) {
     Values.append(Vals.begin(), Vals.end());
     sortUniqueValues();