1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

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 9f805118c3
commit 503ad44b14

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