summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormeibf <meibf@138bc75d-0d04-0410-961f-82ee72b054a4>2009-03-23 13:06:55 +0000
committermeibf <meibf@138bc75d-0d04-0410-961f-82ee72b054a4>2009-03-23 13:06:55 +0000
commitf824d860330d2412290c9549775d687e6d121dd9 (patch)
tree7ad23f6e291f6d24633fe3d7052598600c2e8406
parent43b53598e6eccdf465b056a329e75a943155cc64 (diff)
downloadgcc-f824d860330d2412290c9549775d687e6d121dd9.tar.gz
2009-03-23 Bingfeng Mei <bmei@broadcom.com>
* config.gcc (need_64bit_hwint): Make clear that need_64bit_hwint should be set true if BITS_PER_WORD of target is bigger than 32 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145006 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config.gcc5
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4980b956484..2a8de0abc1a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2009-03-23 Bingfeng Mei <bmei@broadcom.com>
+
+ * config.gcc (need_64bit_hwint): Make clear that need_64bit_hwint
+ should be set true if BITS_PER_WORD of target is bigger than 32
+
2009-03-22 Hans-Peter Nilsson <hp@axis.com>
* config/cris/linux.h (CRIS_LINK_SUBTARGET_SPEC):
diff --git a/gcc/config.gcc b/gcc/config.gcc
index 99741c30d9a..2645e5ab2b3 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -146,8 +146,9 @@
# system normally uses GNU as.
#
# need_64bit_hwint Set to yes if HOST_WIDE_INT must be 64 bits wide
-# for this target. This is true iff this target
-# supports "long" or "wchar_t" wider than 32 bits.
+# for this target. This is true if this target
+# supports "long" or "wchar_t" wider than 32 bits,
+# or BITS_PER_WORD is wider than 32 bits.
# The setting made here must match the one made in
# other locations such as libcpp/configure.ac
#