diff options
author | David Edelsohn <edelsohn@gnu.org> | 2006-05-09 17:09:06 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2006-05-09 13:09:06 -0400 |
commit | 7ac159a508dcbac92324f5f2ea50906a8e10f8b8 (patch) | |
tree | 0dc8acdb38887116c9d3e95eeb92f12559a62046 | |
parent | 08f366731e3c1e62db2d4725c39502fe43ee1467 (diff) | |
download | gcc-7ac159a508dcbac92324f5f2ea50906a8e10f8b8.zip gcc-7ac159a508dcbac92324f5f2ea50906a8e10f8b8.tar.gz gcc-7ac159a508dcbac92324f5f2ea50906a8e10f8b8.tar.bz2 |
re PR bootstrap/26545 (undeclared 64bit constants in c-common.c)
PR target/26545
* config/rs6000/aix41.h (TARGET_64BIT): Define.
From-SVN: r113659
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/aix41.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 802de2c..dd7686f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-05-09 David Edelsohn <edelsohn@gnu.org> + + PR target/26545 + * config/rs6000/aix41.h (TARGET_64BIT): Define. + 2006-05-09 Michael Matz <matz@suse.de> * config.host (<i[34567]86-*-*, x86_64-*-*>): Set diff --git a/gcc/config/rs6000/aix41.h b/gcc/config/rs6000/aix41.h index 57370fd..44b1390 100644 --- a/gcc/config/rs6000/aix41.h +++ b/gcc/config/rs6000/aix41.h @@ -91,3 +91,6 @@ .set directives. We handle this by deferring the output of .set directives to the end of the compilation unit. */ #define TARGET_DEFERRED_OUTPUT_DEFS(DECL,TARGET) true + +#undef TARGET_64BIT +#define TARGET_64BIT 0 |