Commit 5f10ef5b by Richard Henderson Committed by Richard Henderson

c-semantics.c (genrtl_do_stmt): Use integer_zerop instead of integer_zero_node.

        * c-semantics.c (genrtl_do_stmt): Use integer_zerop instead
        of integer_zero_node.

From-SVN: r37178
parent d599b81f
2000-10-31 Richard Henderson <rth@redhat.com>
* c-semantics.c (genrtl_do_stmt): Use integer_zerop instead
of integer_zero_node.
2000-10-31 Richard Henderson <rth@redhat.com>
* c-semantics.c (genrtl_do_stmt): Special case do/while(0).
2000-10-31 Nick Clifton <nickc@redhat.com>
......
......@@ -486,7 +486,7 @@ genrtl_do_stmt (t)
not emit the loop widgetry in this case. In particular this
avoids cluttering the rtl with dummy loop notes, which can affect
alignment of adjacent labels. */
if (cond == integer_zero_node)
if (integer_zerop (cond))
expand_stmt (DO_BODY (t));
else
{
......
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