From 4e4bbc792cdccebcfb30ce2df8ee6f39b2818aca Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 23 Dec 2003 08:03:40 +0000 Subject: [PATCH] Rename ClassifyExpression -> ClassifyExpr git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10591 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/Expressions.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 -- 2.34.1