Add brief doxygen comments for AliasResult enum values.

llvm-svn: 118792
This commit is contained in:
Dan Gohman 2010-11-11 16:37:38 +00:00
parent f51d06bbee
commit c669dfa113
1 changed files with 5 additions and 1 deletions

View File

@ -129,7 +129,11 @@ public:
/// See docs/AliasAnalysis.html for more information on the specific meanings
/// of these values.
///
enum AliasResult { NoAlias = 0, MayAlias = 1, MustAlias = 2 };
enum AliasResult {
NoAlias = 0, ///< No dependencies.
MayAlias = 1, ///< Anything goes.
MustAlias = 2 ///< Pointers are equal.
};
/// alias - The main low level interface to the alias analysis implementation.
/// Returns an AliasResult indicating whether the two pointers are aliased to