commit | c9adb8c61e5dacdb340509ff6090cada1f4b591c | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Wed May 26 15:18:13 2010 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Wed May 26 15:18:13 2010 +0000 |
tree | 9b1dcc5626c7a3f7266854c2b2aa317755dd1fa8 | |
parent | 1464c1d60a33e19639b2bde5a6357af54daee6dd [diff] [blame] |
MC: Change MCInst::dump_pretty to not include a trailing newline. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104696 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/MC/MCInst.cpp b/lib/MC/MCInst.cpp index de142dc..4cb628b 100644 --- a/lib/MC/MCInst.cpp +++ b/lib/MC/MCInst.cpp
@@ -57,7 +57,7 @@ OS << Separator; getOperand(i).print(OS, MAI); } - OS << ">\n"; + OS << ">"; } void MCInst::dump() const {