aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-06-09 00:01:45 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-06-09 00:01:45 +0000
commit77592fe39c404f3c48b06fae48b965058b3a5ee8 (patch)
treefe935ce9b28d5f47da60e6dca757fcdf993988ca /lib/Transforms/Utils
parentdddc1cf50b6dfe543f617426ac4eab55fbbdfecd (diff)
downloadexternal_llvm-77592fe39c404f3c48b06fae48b965058b3a5ee8.zip
external_llvm-77592fe39c404f3c48b06fae48b965058b3a5ee8.tar.gz
external_llvm-77592fe39c404f3c48b06fae48b965058b3a5ee8.tar.bz2
Convert comments to proper Doxygen comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158248 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils')
-rw-r--r--lib/Transforms/Utils/InlineFunction.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Transforms/Utils/InlineFunction.cpp b/lib/Transforms/Utils/InlineFunction.cpp
index d2b167a..9f8043d 100644
--- a/lib/Transforms/Utils/InlineFunction.cpp
+++ b/lib/Transforms/Utils/InlineFunction.cpp
@@ -43,10 +43,10 @@ bool llvm::InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI,
namespace {
/// A class for recording information about inlining through an invoke.
class InvokeInliningInfo {
- BasicBlock *OuterResumeDest; //< Destination of the invoke's unwind.
- BasicBlock *InnerResumeDest; //< Destination for the callee's resume.
- LandingPadInst *CallerLPad; //< LandingPadInst associated with the invoke.
- PHINode *InnerEHValuesPHI; //< PHI for EH values from landingpad insts.
+ BasicBlock *OuterResumeDest; ///< Destination of the invoke's unwind.
+ BasicBlock *InnerResumeDest; ///< Destination for the callee's resume.
+ LandingPadInst *CallerLPad; ///< LandingPadInst associated with the invoke.
+ PHINode *InnerEHValuesPHI; ///< PHI for EH values from landingpad insts.
SmallVector<Value*, 8> UnwindDestPHIValues;
public: