Add brief doxygen comments for AliasResult enum values.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118792 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2010-11-11 16:37:38 +00:00
parent 67a84f1ee6
commit 17e8078ae1

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