mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 20:59:53 +08:00
dwarfout.c (SHORT_TYPE_SIZE): Correct default.
* dwarfout.c (SHORT_TYPE_SIZE): Correct default. * tm.texi (Type Layout): Correct entry for CHAR_TYPE_SIZE. From-SVN: r31733
This commit is contained in:
parent
784a3a806a
commit
c294bd99ed
@ -1,3 +1,9 @@
|
||||
Tue Feb 1 00:57:40 2000 Hans-Peter Nilsson <hp@bitrange.com>
|
||||
|
||||
* dwarfout.c (SHORT_TYPE_SIZE): Correct default.
|
||||
|
||||
* tm.texi (Type Layout): Correct entry for CHAR_TYPE_SIZE.
|
||||
|
||||
2000-01-31 Chandra Chavva <cchavva@cygnus.com>
|
||||
|
||||
* combine.c (try_combine) [HAVE_cc0]: Trying to check the missed
|
||||
|
@ -122,7 +122,7 @@ extern char *version_string;
|
||||
#endif
|
||||
|
||||
#ifndef SHORT_TYPE_SIZE
|
||||
#define SHORT_TYPE_SIZE (BITS_PER_UNIT * 2)
|
||||
#define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
|
||||
#endif
|
||||
|
||||
#ifndef INT_TYPE_SIZE
|
||||
|
@ -1153,9 +1153,8 @@ macro must be at least 64.
|
||||
@findex CHAR_TYPE_SIZE
|
||||
@item CHAR_TYPE_SIZE
|
||||
A C expression for the size in bits of the type @code{char} on the
|
||||
target machine. If you don't define this, the default is one quarter
|
||||
of a word. (If this would be less than one storage unit, it is rounded up
|
||||
to one unit.)
|
||||
target machine. If you don't define this, the default is
|
||||
@code{BITS_PER_UNIT}.
|
||||
|
||||
@findex MAX_CHAR_TYPE_SIZE
|
||||
@item MAX_CHAR_TYPE_SIZE
|
||||
|
Loading…
Reference in New Issue
Block a user