cgraph.c (SET_NPREDECESORS): Add intermediate cast to size_t.
authorAndreas Schwab <schwab@suse.de>
Thu, 13 Feb 2003 12:28:26 +0000 (12:28 +0000)
committerAndreas Schwab <schwab@gcc.gnu.org>
Thu, 13 Feb 2003 12:28:26 +0000 (12:28 +0000)
* cgraph.c (SET_NPREDECESORS): Add intermediate cast to size_t.
Parenthesize properly.
(NPREDECESORS): Parenthesize properly.

From-SVN: r62838

gcc/ChangeLog
gcc/cgraph.c

index 053d2cc2a36a96bd09af51fc10d4fa4aa0b745e8..8b02f5208413cc11e66d138af541a3fa1bd478f4 100644 (file)
@@ -1,3 +1,9 @@
+2003-02-13  Andreas Schwab  <schwab@suse.de>
+
+       * cgraph.c (SET_NPREDECESORS): Add intermediate cast to size_t.
+       Parenthesize properly.
+       (NPREDECESORS): Parenthesize properly.
+
 2003-02-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
 
        * timevar.h (POP_TIMEVAR_AND_RETURN): New macro.
index a199fe6617f9532c80b5fe5ef4dff7d8f71e1f15..5b580491bd1f1b4f2c60abfa6b420ff420a26a54 100644 (file)
@@ -422,8 +422,8 @@ cgraph_finalize_compilation_unit ()
 
 /* Expand all functions that must be output.  */
 
-#define NPREDECESORS(node) (size_t)((node)->aux)
-#define SET_NPREDECESORS(node,n) (node)->aux = (void *) (n);
+#define NPREDECESORS(node) ((size_t) (node)->aux)
+#define SET_NPREDECESORS(node, n) ((node)->aux = (void *) (size_t) (n))
 
 /* Figure out what functions we want to assemble.  */