aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorGreg McGary <greg@mcgary.org>2000-08-25 19:08:47 +0000
committerGreg McGary <gkm@gcc.gnu.org>2000-08-25 19:08:47 +0000
commit9a56f4f680d108a598a092a361e10efcfe2f55c4 (patch)
treed1e2b95a9312067b3d3b66f0a884ef0f5a85eb58 /gcc/flow.c
parentb5232c64e76c385e4ddcbfbcce99a0e73b534ea7 (diff)
downloadgcc-9a56f4f680d108a598a092a361e10efcfe2f55c4.zip
gcc-9a56f4f680d108a598a092a361e10efcfe2f55c4.tar.gz
gcc-9a56f4f680d108a598a092a361e10efcfe2f55c4.tar.bz2
flow.c (dump_edge_info): Use ARRAY_SIZE.
* flow.c (dump_edge_info): Use ARRAY_SIZE. * config/alpha/alpha.c (alpha_expand_block_move): Likewise. From-SVN: r35990
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index a3597a2..0afdc77 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -5909,7 +5909,7 @@ dump_edge_info (file, e, do_succ)
if (comma)
fputc (',', file);
- if (i < (int) (sizeof (bitnames) / sizeof (*bitnames)))
+ if (i < (int) ARRAY_SIZE (bitnames))
fputs (bitnames[i], file);
else
fprintf (file, "%d", i);