Rename ClassifyExpression -> ClassifyExpr

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10591 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-12-23 08:03:40 +00:00
parent 15cad759fe
commit 4e4bbc792c

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