diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-06 16:51:21 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-06 16:51:21 +0000 |
commit | d632b59af06c9aa953ba889b1ecfe6c40fe6a2c1 (patch) | |
tree | 11295486e636ccdf75794a1c0860afe428d8372d /gcc/local-alloc.c | |
parent | eeb9edcbc5e790c7c0a10ce65d5061e1103f2af1 (diff) | |
download | gcc-d632b59af06c9aa953ba889b1ecfe6c40fe6a2c1.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75475 138bc75d-0d04-0410-961f-82ee72b054a4
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 f3caba4f6a6..6524f6c7959 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; |