diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-23 08:03:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-23 08:03:40 +0000 |
commit | 4e4bbc792cdccebcfb30ce2df8ee6f39b2818aca (patch) | |
tree | 9a283ab39c7ffd37b63e9871cbaa3e3f292659d6 /include | |
parent | 15cad759fe2048ac5eb137c6bb0ab7287538677e (diff) | |
download | external_llvm-4e4bbc792cdccebcfb30ce2df8ee6f39b2818aca.zip external_llvm-4e4bbc792cdccebcfb30ce2df8ee6f39b2818aca.tar.gz external_llvm-4e4bbc792cdccebcfb30ce2df8ee6f39b2818aca.tar.bz2 |
Rename ClassifyExpression -> ClassifyExpr
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 77475ff..b081fda 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 |