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 | |
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')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.c | 2 | ||||
-rw-r--r-- | gcc/flow.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7b0d7fc..fe5b369 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-08-25 Greg McGary <greg@mcgary.org> + + * flow.c (dump_edge_info): Use ARRAY_SIZE. + * config/alpha/alpha.c (alpha_expand_block_move): Likewise. + 2000-08-25 Richard Earnshaw <rearnsha@arm.com> * arm.h (STRUCT_VALUE): Define to 0, not NULL. diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index ef6845b..97e56e4 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -2820,7 +2820,7 @@ alpha_expand_block_move (operands) src_done: - if (nregs > sizeof data_regs / sizeof *data_regs) + if (nregs > ARRAY_SIZE (data_regs)) abort (); /* Now save it back out again. */ @@ -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); |