Fix comment indentation in addLandingPad
authorHeejin Ahn <aheejin@gmail.com>
Sat, 29 Sep 2018 09:22:25 +0000 (09:22 +0000)
committerHeejin Ahn <aheejin@gmail.com>
Sat, 29 Sep 2018 09:22:25 +0000 (09:22 +0000)
rL343018 messed up the comment indentation while moving it.

llvm-svn: 343371

llvm/lib/CodeGen/MachineFunction.cpp

index 8603a1e..431484f 100644 (file)
@@ -642,9 +642,8 @@ MCSymbol *MachineFunction::addLandingPad(MachineBasicBlock *LandingPad) {
       addCleanup(LandingPad);
 
     // FIXME: New EH - Add the clauses in reverse order. This isn't 100%
-    // correct,
-    //        but we need to do it this way because of how the DWARF EH emitter
-    //        processes the clauses.
+    //        correct, but we need to do it this way because of how the DWARF EH
+    //        emitter processes the clauses.
     for (unsigned I = LPI->getNumClauses(); I != 0; --I) {
       Value *Val = LPI->getClause(I - 1);
       if (LPI->isCatch(I - 1)) {