[llvm] r343371 - Fix comment indentation in addLandingPad
Heejin Ahn via llvm-commits
llvm-commits at lists.llvm.org
Sat Sep 29 02:22:25 PDT 2018
Author: aheejin
Date: Sat Sep 29 02:22:25 2018
New Revision: 343371
URL: http://llvm.org/viewvc/llvm-project?rev=343371&view=rev
Log:
Fix comment indentation in addLandingPad
rL343018 messed up the comment indentation while moving it.
Modified:
llvm/trunk/lib/CodeGen/MachineFunction.cpp
Modified: llvm/trunk/lib/CodeGen/MachineFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineFunction.cpp?rev=343371&r1=343370&r2=343371&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineFunction.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineFunction.cpp Sat Sep 29 02:22:25 2018
@@ -642,9 +642,8 @@ MCSymbol *MachineFunction::addLandingPad
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)) {
More information about the llvm-commits
mailing list