diff options
Diffstat (limited to 'gcc/c-semantics.c')
-rw-r--r-- | gcc/c-semantics.c | 2 |
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 { |