Commit e54d0214 by Diego Novillo Committed by Diego Novillo

tree-flow-inline.h (num_immediate_uses): Don't abort if DF is NULL.


	* tree-flow-inline.h (num_immediate_uses): Don't abort if DF
	is NULL.

From-SVN: r82099
parent db7b4701
2004-05-21 Diego Novillo <dnovillo@redhat.com>
* tree-flow-inline.h (num_immediate_uses): Don't abort if DF
is NULL.
2004-05-21 Jakub Jelinek <jakub@redhat.com>
* config/sparc/linux64.h (OPTION_DEFAULT_SPECS): If SPARC_BI_ARCH,
......
......@@ -295,6 +295,9 @@ num_immediate_uses (dataflow_t df)
static inline tree
immediate_use (dataflow_t df, int num)
{
if (!df)
return NULL_TREE;
#ifdef ENABLE_CHECKING
if (num >= num_immediate_uses (df))
abort ();
......
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