diff options
author | Heejin Ahn <aheejin@gmail.com> | 2018-09-29 09:22:25 +0000 |
---|---|---|
committer | Heejin Ahn <aheejin@gmail.com> | 2018-09-29 09:22:25 +0000 |
commit | 5e174e747451157ee60bc3143b8c6f2829657128 (patch) | |
tree | 7c87d171bf24b221e68774aeb70c1a2c43427583 /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | a14b90838135682a470e7a7bf5e52477261a5dc4 (diff) | |
download | bcm5719-llvm-5e174e747451157ee60bc3143b8c6f2829657128.tar.gz bcm5719-llvm-5e174e747451157ee60bc3143b8c6f2829657128.zip |
Fix comment indentation in addLandingPad
rL343018 messed up the comment indentation while moving it.
llvm-svn: 343371
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 8603a1edc0b..431484f078b 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/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)) { |