Commit e92e61a7 by Tom de Vries Committed by Tom de Vries

Fix gimple_seq_nondebug_singleton_p

2015-06-09  Tom de Vries  <tom@codesourcery.com>

	* gimple-iterator.h (gimple_seq_nondebug_singleton_p): Don't
	always return false.

From-SVN: r224263
parent 7b337d20
2015-06-09 Tom de Vries <tom@codesourcery.com>
* gimple-iterator.h (gimple_seq_nondebug_singleton_p): Don't
always return false.
2015-06-09 Alexandre Oliva <aoliva@redhat.com> 2015-06-09 Alexandre Oliva <aoliva@redhat.com>
PR rtl-optimization/64164 PR rtl-optimization/64164
......
...@@ -351,33 +351,27 @@ static inline bool ...@@ -351,33 +351,27 @@ static inline bool
gimple_seq_nondebug_singleton_p (gimple_seq seq) gimple_seq_nondebug_singleton_p (gimple_seq seq)
{ {
gimple_stmt_iterator gsi; gimple_stmt_iterator gsi;
/* Find a nondebug gimple. */
gsi.ptr = gimple_seq_first (seq); gsi.ptr = gimple_seq_first (seq);
gsi.seq = &seq; gsi.seq = &seq;
gsi.bb = NULL; gsi.bb = NULL;
/* Not a singleton if the sequence is empty. */
if (gsi_end_p (gsi))
return false;
/* Find a nondebug gimple. */
while (!gsi_end_p (gsi) while (!gsi_end_p (gsi)
&& is_gimple_debug (gsi_stmt (gsi))) && is_gimple_debug (gsi_stmt (gsi)))
gsi_next (&gsi); gsi_next (&gsi);
/* Not a nondebug singleton if there's no nondebug gimple. */ /* No nondebug gimple found, not a singleton. */
if (is_gimple_debug (gsi_stmt (gsi))) if (gsi_end_p (gsi))
return false; return false;
/* Find the next nondebug gimple. */ /* Find a next nondebug gimple. */
gsi_next (&gsi);
while (!gsi_end_p (gsi) while (!gsi_end_p (gsi)
&& is_gimple_debug (gsi_stmt (gsi))) && is_gimple_debug (gsi_stmt (gsi)))
gsi_next (&gsi); gsi_next (&gsi);
/* If there's a next nondebug gimple, it's not a nondebug singleton. */ /* Only a singleton if there's no next nondebug gimple. */
if (!gsi_end_p (gsi)) return gsi_end_p (gsi);
return false;
return true;
} }
#endif /* GCC_GIMPLE_ITERATOR_H */ #endif /* GCC_GIMPLE_ITERATOR_H */
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