diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-07-28 23:23:00 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-07-28 23:23:00 +0000 |
commit | cb3f7d83009e7a08fa1c10a8034e0f23d378d5c6 (patch) | |
tree | e55b23679e297ea8d54151a3151cf20ba6caf590 /lib/CodeGen | |
parent | 759e64d6e3c6587b7a0115e39a24fce5cf516a8d (diff) | |
download | external_llvm-cb3f7d83009e7a08fa1c10a8034e0f23d378d5c6.zip external_llvm-cb3f7d83009e7a08fa1c10a8034e0f23d378d5c6.tar.gz external_llvm-cb3f7d83009e7a08fa1c10a8034e0f23d378d5c6.tar.bz2 |
Doxygenify comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77394 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.cpp | 4 | ||||
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index 9eca1dc..35aad77 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -284,8 +284,8 @@ bool DwarfException::PadLT(const LandingPadInfo *L, const LandingPadInfo *R) { return LSize < RSize; } -// ComputeActionsTable - Compute the actions table and gather the first action -// index for each landing pad site. +/// ComputeActionsTable - Compute the actions table and gather the first action +/// index for each landing pad site. unsigned DwarfException::ComputeActionsTable(const SmallVectorImpl<const LandingPadInfo*> &LandingPads, diff --git a/lib/CodeGen/AsmPrinter/DwarfException.h b/lib/CodeGen/AsmPrinter/DwarfException.h index de1c436..4b37538 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.h +++ b/lib/CodeGen/AsmPrinter/DwarfException.h @@ -141,6 +141,8 @@ class VISIBILITY_HIDDEN DwarfException : public Dwarf { unsigned Action; }; + /// ComputeActionsTable - Compute the actions table and gather the first + /// action index for each landing pad site. unsigned ComputeActionsTable(const SmallVectorImpl<const LandingPadInfo*> &LP, SmallVectorImpl<ActionEntry> &Actions, SmallVectorImpl<unsigned> &FirstActions); |