From: Chris Lattner Date: Tue, 23 Dec 2003 08:03:40 +0000 (+0000) Subject: Rename ClassifyExpression -> ClassifyExpr X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4e4bbc792cdccebcfb30ce2df8ee6f39b2818aca;p=oota-llvm.git Rename ClassifyExpression -> ClassifyExpr git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10591 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/Expressions.h b/include/llvm/Analysis/Expressions.h index 77475ffa6c1..b081fdaf4fc 100644 --- a/include/llvm/Analysis/Expressions.h +++ b/include/llvm/Analysis/Expressions.h @@ -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