diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2017-12-15 11:30:56 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2017-12-15 11:30:56 +0000 |
commit | f5b39f907f7a2d53a9506fdeafb99078315531eb (patch) | |
tree | d3a60c3ccd8e9a20607fe169c396e18e46ae37a2 /gcc/config | |
parent | 25ea36594733d8f13be3f0982c9bfe58f51c6319 (diff) | |
download | gcc-f5b39f907f7a2d53a9506fdeafb99078315531eb.zip gcc-f5b39f907f7a2d53a9506fdeafb99078315531eb.tar.gz gcc-f5b39f907f7a2d53a9506fdeafb99078315531eb.tar.bz2 |
re PR target/66488 (segfault on sizeof(long) < sizeof(void*) and large GCC memory usage)
2017-12-15 Eric Botcazou <ebotcazou@adacore.com>
PR target/66488
* ggc-page.c (HOST_BITS_PER_PTR): Do not define here...
* hwint.h (HOST_BITS_PER_PTR): ...but here instead.
* config/i386/xm-mingw32.h (HOST_BITS_PER_PTR): Delete.
From-SVN: r255687
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/xm-mingw32.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/config/i386/xm-mingw32.h b/gcc/config/i386/xm-mingw32.h index 6eb3a62..d4d63f5 100644 --- a/gcc/config/i386/xm-mingw32.h +++ b/gcc/config/i386/xm-mingw32.h @@ -37,8 +37,3 @@ along with GCC; see the file COPYING3. If not see "long long" values. Instead, we use "I64". */ #define HOST_LONG_LONG_FORMAT "I64" #endif - -/* this is to prevent gcc-heap.c from assuming sizeof(long) == sizeof(intptr_t) */ -#ifdef __x86_64__ -# define HOST_BITS_PER_PTR 64 -#endif |