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 | 6c574d883c26809573eb4111620886e62bc45ba1 (patch) | |
tree | c4aeca6958b15720ddd18ce2a845bcc3c5690d62 /llvm/lib | |
parent | 1fddd873b40f836bb02f1e4a3e1886d56f58173e (diff) | |
download | bcm5719-llvm-6c574d883c26809573eb4111620886e62bc45ba1.tar.gz bcm5719-llvm-6c574d883c26809573eb4111620886e62bc45ba1.zip |
Doxygenify comments.
llvm-svn: 77394
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | 4 | ||||
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp index 9eca1dc6e02..35aad773b71 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/llvm/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/llvm/lib/CodeGen/AsmPrinter/DwarfException.h b/llvm/lib/CodeGen/AsmPrinter/DwarfException.h index de1c436e46f..4b3753893ef 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.h +++ b/llvm/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); |