diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-24 12:49:05 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-24 12:49:05 +0000 |
commit | ceb2fe0f2917b5ae869b421adaca14eac8de90a8 (patch) | |
tree | 33674578636ffae9acafca71051eaaed0b4313bd /gcc/config/frv | |
parent | 714ce391bc9031ec6f10c2034d51a4d872b87cb5 (diff) | |
download | gcc-ceb2fe0f2917b5ae869b421adaca14eac8de90a8.tar.gz |
* config/elfos.h: Follow spelling conventions.
* config/alpha/alpha.h: Likewise.
* config/arc/arc.h: Likewise.
* config/arm/arm.md: Likewise.
* config/avr/avr.h: Likewise.
* config/cris/cris.md: Likewise.
* config/d30v/d30v.h: Likewise.
* config/frv/frv.c: Likewise.
* config/frv/frv.h: Likewise.
* config/h8300/h8300.c: Likewise.
* config/h8300/h8300.h: Likewise.
* config/h8300/h8300.md: Likewise.
* config/i386/cygwin.h: Likewise.
* config/i386/i386.h: Likewise.
* config/i386/sysv3.h: Likewise.
* config/i960/i960.h: Likewise.
* config/ia64/ia64.h: Likewise.
* config/ia64/ia64.md: Likewise.
* config/ip2k/ip2k.h: Likewise.
* config/m32r/m32r.h: Likewise.
* config/m68k/m68k.h: Likewise.
* config/m88k/m88k.h: Likewise.
* config/mcore/mcore.c: Likewise.
* config/mcore/mcore.h: Likewise.
* config/mcore/mcore.md: Likewise.
* config/mips/mips.h: Likewise.
* config/mmix/mmix.h: Likewise.
* config/mmix/mmix.md: Likewise.
* config/ns32k/netbsd.h: Likewise.
* config/ns32k/ns32k.h: Likewise.
* config/ns32k/ns32k.md: Likewise.
* config/pa/pa.h: Likewise.
* config/romp/romp.h: Likewise.
* config/rs6000/rs6000.h: Likewise.
* config/rs6000/rs6000.md: Likewise.
* config/sparc/sparc.h: Likewise.
* config/stormy16/stormy-abi: Likewise.
* config/stormy16/stormy16.h: Likewise.
* config/vax/vax.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57468 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/frv')
-rw-r--r-- | gcc/config/frv/frv.c | 2 | ||||
-rw-r--r-- | gcc/config/frv/frv.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/frv/frv.c b/gcc/config/frv/frv.c index 1b6f37b4934..cea0b571902 100644 --- a/gcc/config/frv/frv.c +++ b/gcc/config/frv/frv.c @@ -7858,7 +7858,7 @@ frv_adjust_field_align (field, computed) /* If this isn't a :0 field and if the previous element is a bitfield also, see if the type is different, if so, we will need to align the - bitfield to the next boundary */ + bit-field to the next boundary */ if (prev && ! DECL_PACKED (field) && ! integer_zerop (DECL_SIZE (field)) diff --git a/gcc/config/frv/frv.h b/gcc/config/frv/frv.h index 414fe2716ed..f5fe93ee0b6 100644 --- a/gcc/config/frv/frv.h +++ b/gcc/config/frv/frv.h @@ -688,13 +688,13 @@ extern int g_switch_set; /* whether -G xx was passed. */ /* Define this if you wish to imitate the way many other C compilers handle alignment of bitfields and the structures that contain them. - The behavior is that the type written for a bitfield (`int', `short', or + The behavior is that the type written for a bit-field (`int', `short', or other integer type) imposes an alignment for the entire structure, as if the structure really did contain an ordinary field of that type. In addition, - the bitfield is placed within the structure so that it would fit within such + the bit-field is placed within the structure so that it would fit within such a field, not crossing a boundary for it. - Thus, on most machines, a bitfield whose type is written as `int' would not + Thus, on most machines, a bit-field whose type is written as `int' would not cross a four-byte boundary, and would force four-byte alignment for the whole structure. (The alignment used may not be four bytes; it is controlled by the other alignment parameters.) @@ -711,7 +711,7 @@ extern int g_switch_set; /* whether -G xx was passed. */ `STRUCTURE_SIZE_BOUNDARY' as large as `BIGGEST_ALIGNMENT'. Then every structure can be accessed with fullwords. - Unless the machine has bitfield instructions or you define + Unless the machine has bit-field instructions or you define `STRUCTURE_SIZE_BOUNDARY' that way, you must define `PCC_BITFIELD_TYPE_MATTERS' to have a nonzero value. |