mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Rename ClassifyExpression -> ClassifyExpr
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10591 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
15cad759fe
commit
4e4bbc792c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user