Rename ClassifyExpression -> ClassifyExpr

llvm-svn: 10591
This commit is contained in:
Chris Lattner 2003-12-23 08:03:40 +00:00
parent 7e755e443f
commit f732b6b926
1 changed files with 6 additions and 6 deletions

View File

@ -9,8 +9,8 @@
//
// This file defines a package of expression analysis utilties:
//
// ClassifyExpression: Analyze an expression to determine the complexity of the
// expression, and which other variables it depends on.
// ClassifyExpr: Analyze an expression to determine the complexity of the
// expression, and which other variables it depends on.
//
//===----------------------------------------------------------------------===//
@ -25,10 +25,10 @@ class ConstantInt;
struct ExprType;
// ClassifyExpression: Analyze an expression to determine the complexity of the
// expression, and which other values it depends on.
//
ExprType ClassifyExpression(Value *Expr);
/// ClassifyExpr: Analyze an expression to determine the complexity of the
/// expression, and which other values it depends on.
///
ExprType ClassifyExpr(Value *Expr);
// ExprType - Represent an expression of the form CONST*VAR+CONST
// or simpler. The expression form that yields the least information about the