Rename ClassifyExpression -> ClassifyExpr
authorChris Lattner <sabre@nondot.org>
Tue, 23 Dec 2003 08:03:40 +0000 (08:03 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 23 Dec 2003 08:03:40 +0000 (08:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10591 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/Expressions.h

index 77475ffa6c135634269668481b32c67e0ceabb1c..b081fdaf4fc50ad6c238714a9b94481c237d3d67 100644 (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