Commit 9fb93b00 by Andreas Schwab Committed by Andreas Schwab

cgraph.c (SET_NPREDECESORS): Add intermediate cast to size_t.

	* cgraph.c (SET_NPREDECESORS): Add intermediate cast to size_t.
	Parenthesize properly.
	(NPREDECESORS): Parenthesize properly.

From-SVN: r62838
parent 8c9c9dfb
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> 2003-02-13 Gabriel Dos Reis <gdr@integrable-solutions.net>
* timevar.h (POP_TIMEVAR_AND_RETURN): New macro. * timevar.h (POP_TIMEVAR_AND_RETURN): New macro.
......
...@@ -422,8 +422,8 @@ cgraph_finalize_compilation_unit () ...@@ -422,8 +422,8 @@ cgraph_finalize_compilation_unit ()
/* Expand all functions that must be output. */ /* Expand all functions that must be output. */
#define NPREDECESORS(node) (size_t)((node)->aux) #define NPREDECESORS(node) ((size_t) (node)->aux)
#define SET_NPREDECESORS(node,n) (node)->aux = (void *) (n); #define SET_NPREDECESORS(node, n) ((node)->aux = (void *) (size_t) (n))
/* Figure out what functions we want to assemble. */ /* Figure out what functions we want to assemble. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment