dependence.c (INDEX_LIMIT_CHECK): Uppercase macro parameter.
authorGraham Stott <grahams@redhat.com>
Wed, 8 Aug 2001 07:52:37 +0000 (07:52 +0000)
committerGraham Stott <grahams@gcc.gnu.org>
Wed, 8 Aug 2001 07:52:37 +0000 (07:52 +0000)
        * dependence.c (INDEX_LIMIT_CHECK): Uppercase macro parameter.
        (abs): Uppercase and paranthesize macro parameter.
        (MEM_DEPENDENCY): Add whitespace.

From-SVN: r44709

gcc/ChangeLog
gcc/dependence.c

index df59d7333b2fc7de75ec5849a05054b8862ab6cb..7aa747fa5b88807873fd78dff3b70f33260acc5d 100644 (file)
@@ -1,3 +1,9 @@
+2001-08-08  Graham Stott  <grahams@redhat.com>
+
+       * dependence.c (INDEX_LIMIT_CHECK): Uppercase macro parameter.
+       (abs): Uppercase and paranthesize macro parameter.
+       (MEM_DEPENDENCY): Add whitespace.
+
 2001-08-08  Graham Stott  <grahams@redhat.com>
 
        * config/mips/mips.c (mips_legitimate_address_p): Fix enable checking
index 3bfe34a627b264ffb5bb162a741b03472a07d619..103380bc491a5ce52530c371c860335a0737ea63 100644 (file)
@@ -474,10 +474,10 @@ find_induction_variable (init_node, cond_node, incr_node, loop_def)
   cond_node = TREE_VALUE (cond_node);
   incr = cond_node;
 
-#define INDEX_LIMIT_CHECK(node) \
-      (TREE_CODE_CLASS (TREE_CODE (node)) == '<') \
-       && (TREE_CODE (TREE_OPERAND (node, 0)) == VAR_DECL \
-           && (IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (node, 0))) \
+#define INDEX_LIMIT_CHECK(NODE) \
+      (TREE_CODE_CLASS (TREE_CODE (NODE)) == '<') \
+       && (TREE_CODE (TREE_OPERAND (NODE, 0)) == VAR_DECL \
+           && (IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (NODE, 0))) \
                == IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (incr_node, 0))))) \
       ? 1 : 0
 
@@ -1146,7 +1146,7 @@ check_subscript_induction (icoefficient, ocoefficient, loop_ptr)
     return 0;
 }
 
-#define abs(n) (n < 0 ? -n : n)
+#define abs(N) ((N) < 0 ? -(N) : (N))
 
 /* Determine the DIRECTION and DISTANCE dependency for subscript SUB of
    inputs ICOEFFICIENTS and outputs OCOEFFICIENTS of loop LOOP_PTR using
@@ -1418,7 +1418,7 @@ remember_dest_for_dependence (node)
 }
 
 #ifndef MEM_DEPENDENCY
-#define MEM_DEPENDENCY(RTX) XCWINT(RTX, 2, MEM)
+#define MEM_DEPENDENCY(RTX) XCWINT (RTX, 2, MEM)
 #endif
 
 /* Return 1 along with the dependence DIRECTION and DISTANCE if there is a