diff options
-rw-r--r-- | include/llvm/Analysis/Expressions.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/Analysis/Expressions.h b/include/llvm/Analysis/Expressions.h index 77475ffa6c..b081fdaf4f 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 |