Give SCEVNaryExpr a doxygen comment.

llvm-svn: 72423
This commit is contained in:
Dan Gohman 2009-05-26 17:42:32 +00:00
parent 9fe212806b
commit fae6edc6f2
1 changed files with 4 additions and 0 deletions

View File

@ -194,6 +194,10 @@ namespace llvm {
};
//===--------------------------------------------------------------------===//
/// SCEVNAryExpr - This node is a base class providing common
/// functionality for n'ary operators.
///
class SCEVNAryExpr : public SCEV {
protected:
std::vector<SCEVHandle> Operands;