aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-semantics.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2000-10-31 17:48:12 -0800
committerRichard Henderson <rth@gcc.gnu.org>2000-10-31 17:48:12 -0800
commit5f10ef5bac2c7314faf54ff04414f75e19e8f5be (patch)
tree40ee66aeb437ffdea13cc14a4076af5ed6264883 /gcc/c-semantics.c
parentd599b81f46dd2f76deb23313b92a82e8f64bec84 (diff)
downloadgcc-5f10ef5bac2c7314faf54ff04414f75e19e8f5be.zip
gcc-5f10ef5bac2c7314faf54ff04414f75e19e8f5be.tar.gz
gcc-5f10ef5bac2c7314faf54ff04414f75e19e8f5be.tar.bz2
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
Diffstat (limited to 'gcc/c-semantics.c')
-rw-r--r--gcc/c-semantics.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-semantics.c b/gcc/c-semantics.c
index ccc3c7d..625f726 100644
--- a/gcc/c-semantics.c
+++ b/gcc/c-semantics.c
@@ -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
{