diff options
author | obrien <obrien@FreeBSD.org> | 2000-03-30 03:23:37 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-03-30 03:23:37 +0000 |
commit | 3de76ad710823e7bdbc45e0461b6fae90a02cda7 (patch) | |
tree | 383c9aea5808244757b3c66f615b250b1c1937ae /contrib/gcc | |
parent | 1ff8e4099578d6268b68a994b4dd35259fb193ac (diff) | |
parent | 89d6e979f6e51927c13633bc1c374b05a37d0238 (diff) | |
download | FreeBSD-src-3de76ad710823e7bdbc45e0461b6fae90a02cda7.zip FreeBSD-src-3de76ad710823e7bdbc45e0461b6fae90a02cda7.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r58809,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/gcc')
-rw-r--r-- | contrib/gcc/ChangeLog | 21 | ||||
-rw-r--r-- | contrib/gcc/f/ChangeLog | 4 | ||||
-rw-r--r-- | contrib/gcc/f/stw.h | 2 | ||||
-rw-r--r-- | contrib/gcc/glimits.h | 2 |
4 files changed, 27 insertions, 2 deletions
diff --git a/contrib/gcc/ChangeLog b/contrib/gcc/ChangeLog index 8e83eb9a..f1364d1 100644 --- a/contrib/gcc/ChangeLog +++ b/contrib/gcc/ChangeLog @@ -1,3 +1,24 @@ +Wed Mar 22 13:11:54 2000 David Edelsohn <edelsohn@gnu.org> + + * rs6000.c (reg_or_u_cint_operand): New function. + (logical_operand): Handle 64-bit hosts. + (logical_u_operand): New function. + (non_logical_cint_operand): Handle 64-bit hosts. + (non_logical_u_cint_operand): New function. + (expand_block_move): Allow 8 DImode loads for PowerPC64. + * rs6000.h (PREDICATE_CODES): Define new functions. + * rs6000.md (iordi3, xordi3): Constant int must be unsigned 32-bits. + (movdi_64): Bracket code intended for 64-bit hosts. Create + CONST_DOUBLE for 32-bit values. + + * glimits.h (__LONG_MAX__): Recognize 64-bit AIX too. + +Wed Mar 22 13:11:54 2000 Gabriel Paubert <paubert@iram.es> + + * rs6000.md: Correct instructions length attributes and + constraints on unsigned compare instructions. + (*ne0): Disable for PowerPC64. + Tue Mar 7 21:41:17 2000 Jeffrey A Law (law@cygnus.com) * cccp.c (handle_directive): Initialize backslash_newlines_p. diff --git a/contrib/gcc/f/ChangeLog b/contrib/gcc/f/ChangeLog index bc62110..47a745e 100644 --- a/contrib/gcc/f/ChangeLog +++ b/contrib/gcc/f/ChangeLog @@ -1,3 +1,7 @@ +Mon Mar 13 01:00:55 2000 Toon Moene <toon@moene.indiv.nluug.nl> + + * stw.h (struct _ffestw_): Change type of uses_ to int. + Fri Feb 18 13:36:50 2000 Martin von Loewis <loewis@informatik.hu-berlin.de> * g77spec.c (lang_specific_driver): Use GCCBUGURL. diff --git a/contrib/gcc/f/stw.h b/contrib/gcc/f/stw.h index 58818a6..554d047 100644 --- a/contrib/gcc/f/stw.h +++ b/contrib/gcc/f/stw.h @@ -70,7 +70,7 @@ struct _ffestw_ ffewhereLine line_; /* Where first token of statement triggering state */ ffewhereColumn col_; /* was seen in source file. */ - char uses_; /* # uses (new+use-kill calls). */ + int uses_; /* # uses (new+use-kill calls). */ ffestvState state_; int substate_; /* Used on a per-block-state basis. */ #if FFECOM_targetCURRENT == FFECOM_targetGCC diff --git a/contrib/gcc/glimits.h b/contrib/gcc/glimits.h index 559e712..2878051 100644 --- a/contrib/gcc/glimits.h +++ b/contrib/gcc/glimits.h @@ -64,7 +64,7 @@ /* Minimum and maximum values a `signed long int' can hold. (Same as `int'). */ #ifndef __LONG_MAX__ -#if defined (__alpha__) || defined (__sparc_v9__) || defined (__sparcv9) +#if defined (__alpha__) || (defined (_ARCH_PPC) && defined (__64BIT__)) || defined (__sparc_v9__) || defined (__sparcv9) #define __LONG_MAX__ 9223372036854775807L #else #define __LONG_MAX__ 2147483647L |