diff options
author | Greg McGary <greg@mcgary.org> | 2000-08-25 19:08:47 +0000 |
---|---|---|
committer | Greg McGary <gkm@gcc.gnu.org> | 2000-08-25 19:08:47 +0000 |
commit | 9a56f4f680d108a598a092a361e10efcfe2f55c4 (patch) | |
tree | d1e2b95a9312067b3d3b66f0a884ef0f5a85eb58 /gcc/flow.c | |
parent | b5232c64e76c385e4ddcbfbcce99a0e73b534ea7 (diff) | |
download | gcc-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |