diff options
author | Owen Anderson <resistor@mac.com> | 2011-09-21 17:58:45 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-09-21 17:58:45 +0000 |
commit | bcc3fadad9712c9cabb51cfa0cb357077b689876 (patch) | |
tree | b32caf17e8571c647e90350e61722641077a4906 /llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp | |
parent | 4ce4a61cac24da062d6ac75db33052d51424e2e5 (diff) | |
download | bcm5719-llvm-bcc3fadad9712c9cabb51cfa0cb357077b689876.tar.gz bcm5719-llvm-bcc3fadad9712c9cabb51cfa0cb357077b689876.zip |
These do not need to be conditional on the presence of CommentStream, as they have a fallback path now.
llvm-svn: 140267
Diffstat (limited to 'llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp b/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp index 10a8f9ac70b..5d6c6ad93db 100644 --- a/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp +++ b/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp @@ -28,7 +28,7 @@ using namespace llvm; void MSP430InstPrinter::printInst(const MCInst *MI, raw_ostream &O, StringRef Annot) { printInstruction(MI, O); - if (CommentStream) printAnnotation(O, Annot); + printAnnotation(O, Annot); } void MSP430InstPrinter::printPCRelImmOperand(const MCInst *MI, unsigned OpNo, |