diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-07-23 20:11:13 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-07-23 20:11:13 +0000 |
commit | a059656cba1fa614f86bd9a5fe23943bb677db24 (patch) | |
tree | 4e0f95bac4a006d98c79d789f2576cb6c0af3e9a /gcc/flow.c | |
parent | 15786153201a771fa5c53f5cf8baeb9d8cb6d5db (diff) | |
download | ppe42-gcc-a059656cba1fa614f86bd9a5fe23943bb677db24.tar.gz ppe42-gcc-a059656cba1fa614f86bd9a5fe23943bb677db24.zip |
entered into RCS
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1676 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/flow.c b/gcc/flow.c index e910ff1f392..90e763d59b0 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -1167,7 +1167,7 @@ propagate_block (old, first, last, final, significant, bnum) In each element, OFFSET is the byte-number within a regset for the register described by the element, and BIT is a mask for that register's bit within the byte. */ - register struct foo { short offset; short bit; } *regs_sometimes_live; + register struct sometimes { short offset; short bit; } *regs_sometimes_live; int sometimes_max = 0; /* This regset has 1 for each reg that we have seen live so far. It and REGS_SOMETIMES_LIVE are updated together. */ @@ -1206,7 +1206,7 @@ propagate_block (old, first, last, final, significant, bnum) maxlive = (regset) alloca (regset_bytes); bcopy (old, maxlive, regset_bytes); regs_sometimes_live - = (struct foo *) alloca (max_regno * sizeof (struct foo)); + = (struct sometimes *) alloca (max_regno * sizeof (struct sometimes)); /* Process the regs live at the end of the block. Enter them in MAXLIVE and REGS_SOMETIMES_LIVE. @@ -1427,7 +1427,7 @@ propagate_block (old, first, last, final, significant, bnum) must not go in a register clobbered by calls. Find all regs now live and record this for them. */ - register struct foo *p = regs_sometimes_live; + register struct sometimes *p = regs_sometimes_live; for (i = 0; i < sometimes_max; i++, p++) if (old[p->offset] & (1 << p->bit)) @@ -1461,7 +1461,7 @@ propagate_block (old, first, last, final, significant, bnum) } { - register struct foo *p = regs_sometimes_live; + register struct sometimes *p = regs_sometimes_live; for (i = 0; i < sometimes_max; i++, p++) { if (old[p->offset] & ((REGSET_ELT_TYPE) 1 << p->bit)) |