diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-01-06 16:51:21 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-01-06 16:51:21 +0000 |
commit | 5d3cc252060adbc8457b1d1b9fb30c1fa7803c4a (patch) | |
tree | 11295486e636ccdf75794a1c0860afe428d8372d /gcc/local-alloc.c | |
parent | 95ea367d2d2d54e8e45725538f99eb71ec301487 (diff) | |
download | gcc-5d3cc252060adbc8457b1d1b9fb30c1fa7803c4a.zip gcc-5d3cc252060adbc8457b1d1b9fb30c1fa7803c4a.tar.gz gcc-5d3cc252060adbc8457b1d1b9fb30c1fa7803c4a.tar.bz2 |
alias.c: Fix comment typos.
* alias.c: Fix comment typos.
* builtins.c: Likewise.
* cfg.c: Likewise.
* df.c: Likewise.
* dominance.c: Likewise.
* dwarf2out.c: Likewise.
* emit-rtl.c: Likewise.
* expr.c: Likewise.
* final.c: Likewise.
* fold-const.c: Likewise.
* gcse.c: Likewise.
* genattrtab.c: Likewise.
* genrecog.c: Likewise.
* gensupport.c: Likewise.
* ggc-zone.c: Likewise.
* integrate.c: Likewise.
* local-alloc.c: Likewise.
* loop.c: Likewise.
* recog.c: Likewise.
* regmove.c: Likewise.
* reg-stack.c: Likewise.
* reorg.c: Likewise.
* rtlanal.c: Likewise.
* rtl.h: Likewise.
* sched-ebb.c: Likewise.
* simplify-rtx.c: Likewise.
* toplev.c: Likewise.
* varasm.c: Likewise.
From-SVN: r75475
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index f3caba4..6524f6c 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -538,7 +538,7 @@ equiv_init_varies_p (rtx x) if (MEM_VOLATILE_P (x)) return 1; - /* FALLTHROUGH */ + /* Fall through. */ default: break; @@ -603,7 +603,7 @@ equiv_init_movable_p (rtx x, int regno) if (MEM_VOLATILE_P (x)) return 0; - /* FALLTHROUGH */ + /* Fall through. */ default: break; @@ -2412,7 +2412,7 @@ requires_inout (const char *p) if (REG_CLASS_FROM_CONSTRAINT (c, p) == NO_REGS && !EXTRA_ADDRESS_CONSTRAINT (c, p)) break; - /* FALLTHRU */ + /* Fall through. */ case 'p': case 'g': case 'r': reg_allowed = 1; |