mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 05:32:25 +00:00
Remove a redundant call to hasRawTextSupport.
The code path it was guarding was already using emitRawComment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200591 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ac9f143a69
commit
6f4efee6cb
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user