diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 60a6bb2..fb55a74 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +1999-03-18 Gavin Romig-Koch <gavin@cygnus.com> + + * config/mips/mips.c (mips_explicit_type_size_string): Correct + its type. + Thu Mar 18 01:24:25 1999 Jeffrey A Law (law@cygnus.com) * configure.in: Use "exit 1", not "exit (1)". diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 50fb10e..a4b38e1 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -224,7 +224,7 @@ const char *mips_no_mips16_string; /* This is only used to determine if an type size setting option was explicitly specified (-mlong64, -mint64, -mlong32). The specs set this option if such an option is used. */ -char *mips_explicit_type_size_string; +const char *mips_explicit_type_size_string; /* Whether we are generating mips16 hard float code. In mips16 mode we always set TARGET_SOFT_FLOAT; this variable is nonzero if |