diff options
| author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-12 05:23:24 +0000 |
|---|---|---|
| committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-12 05:23:24 +0000 |
| commit | d7f9cd15cb4dad110a0eefb5b1360528ff5f7b27 (patch) | |
| tree | 375787649de0055c937561c701a6702e24c8cef7 | |
| parent | 5c77e0feeaab3e21eb9a65da1e400389fa5dd83d (diff) | |
| download | ppe42-gcc-d7f9cd15cb4dad110a0eefb5b1360528ff5f7b27.tar.gz ppe42-gcc-d7f9cd15cb4dad110a0eefb5b1360528ff5f7b27.zip | |
* mn10200.h (PTRDIFF_TYPE): Change it to a signed type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50633 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/mn10200/mn10200.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b722ca92383..766650e0960 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-03-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * mn10200.h (PTRDIFF_TYPE): Change it to a signed type. + 2002-03-11 Richard Henderson <rth@redhat.com> * toplev.c (rest_of_compilation): Call purge_all_dead_edges diff --git a/gcc/config/mn10200/mn10200.h b/gcc/config/mn10200/mn10200.h index a0191fcbcdf..1356fd07c04 100644 --- a/gcc/config/mn10200/mn10200.h +++ b/gcc/config/mn10200/mn10200.h @@ -418,7 +418,7 @@ enum reg_class { #undef SIZE_TYPE #undef PTRDIFF_TYPE #define SIZE_TYPE "long unsigned int" -#define PTRDIFF_TYPE "long unsigned int" +#define PTRDIFF_TYPE "long int" /* Note sizeof (WCHAR_TYPE) must be equal to the value of WCHAR_TYPE_SIZE! */ #undef WCHAR_TYPE |

