[CodeGen] Use generic printAsOperand machinery instead of hand rolling it
authorDavid Majnemer <david.majnemer@gmail.com>
Fri, 25 Dec 2015 09:37:26 +0000 (09:37 +0000)
committerDavid Majnemer <david.majnemer@gmail.com>
Fri, 25 Dec 2015 09:37:26 +0000 (09:37 +0000)
We already know how to properly print out basic blocks in
printAsOperand, we should not roll it ourselves in
AsmPrinter::EmitBasicBlockStart.  No functionality change is intended.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256413 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/AsmPrinter.cpp

index 731494419350daa61e57817e641f5d973f52c37c..be7eafbeb83dda71d5676ecd2c4e8494f78f1bc7 100644 (file)
@@ -2503,9 +2503,13 @@ void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock &MBB) const {
 
   // Print some verbose block comments.
   if (isVerbose()) {
-    if (const BasicBlock *BB = MBB.getBasicBlock())
-      if (BB->hasName())
-        OutStreamer->AddComment("%" + BB->getName());
+    if (const BasicBlock *BB = MBB.getBasicBlock()) {
+      if (BB->hasName()) {
+        BB->printAsOperand(OutStreamer->GetCommentOS(),
+                           /*PrintType=*/false, BB->getModule());
+        OutStreamer->GetCommentOS() << '\n';
+      }
+    }
     emitBasicBlockLoopComments(MBB, LI, *this);
   }