فهرست منبع

Fix comment indentation in addLandingPad

rL343018 messed up the comment indentation while moving it.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@343371 91177308-0d34-0410-b5e6-96231b3b80d8
Heejin Ahn 6 سال پیش
والد
کامیت
cde69b248e
1فایلهای تغییر یافته به همراه2 افزوده شده و 3 حذف شده
  1. 2 3
      lib/CodeGen/MachineFunction.cpp

+ 2 - 3
lib/CodeGen/MachineFunction.cpp

@@ -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)) {