Remove a redundant call to hasRawTextSupport.

The code path it was guarding was already using emitRawComment.

llvm-svn: 200591
This commit is contained in:
Rafael Espindola 2014-01-31 23:14:01 +00:00
parent 972e71ab5a
commit 499a748bc4
1 changed files with 1 additions and 1 deletions

View File

@ -2170,7 +2170,7 @@ void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
// Print the main label for the block.
if (MBB->pred_empty() || isBlockOnlyReachableByFallthrough(MBB)) {
if (isVerbose() && OutStreamer.hasRawTextSupport()) {
if (isVerbose()) {
// NOTE: Want this comment at start of line, don't emit with AddComment.
OutStreamer.emitRawComment(" BB#" + Twine(MBB->getNumber()) + ":", false);
}