Remove constness from this, it modifies the output stream as does

everything else underneath.

llvm-svn: 168395
This commit is contained in:
Eric Christopher 2012-11-20 23:30:11 +00:00
parent cd7720a03f
commit 383719592a
2 changed files with 2 additions and 2 deletions

View File

@ -1796,7 +1796,7 @@ void DwarfDebug::emitDebugInfo() {
/// emitAbbreviations - Emit the abbreviation section.
///
void DwarfDebug::emitAbbreviations() const {
void DwarfDebug::emitAbbreviations() {
// Check to see if it is worth the effort.
if (!Abbreviations.empty()) {
// Start the debug abbrev section.

View File

@ -372,7 +372,7 @@ private:
/// emitAbbreviations - Emit the abbreviation section.
///
void emitAbbreviations() const;
void emitAbbreviations();
/// emitEndOfLineMatrix - Emit the last address of the section and the end of
/// the line matrix.