aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meissner <meissner@gcc.gnu.org>1992-03-28 22:10:53 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1992-03-28 22:10:53 +0000
commitd26e29e1b6006f8a0f9923acbf31c91d8e7e7fa2 (patch)
tree922c5e4ab13472a3d6cf224d9e9753d8309ff028
parentd2f782d27b07a451c40aab9f3c261c34016fe026 (diff)
downloadgcc-d26e29e1b6006f8a0f9923acbf31c91d8e7e7fa2.zip
gcc-d26e29e1b6006f8a0f9923acbf31c91d8e7e7fa2.tar.gz
gcc-d26e29e1b6006f8a0f9923acbf31c91d8e7e7fa2.tar.bz2
*** empty log message ***
From-SVN: r615
-rw-r--r--gcc/config/mips/mips.h12
-rw-r--r--gcc/config/mips/ultrix.h3
2 files changed, 10 insertions, 5 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h
index 2f32e7f..25b783e 100644
--- a/gcc/config/mips/mips.h
+++ b/gcc/config/mips/mips.h
@@ -135,6 +135,7 @@ extern char *mips_move_2words ();
extern int mips_output_external ();
extern void mips_output_filename ();
extern void mips_output_lineno ();
+extern char *output_block_move ();
extern void override_options ();
extern void print_operand_address ();
extern void print_operand ();
@@ -160,6 +161,8 @@ extern void text_section ();
#define HALF_PIC_ENCODE(DECL)
#define HALF_PIC_INIT() error ("half-pic init called on systems that don't support it.")
#define HALF_PIC_ADDRESS_P(X) 0
+#define HALF_PIC_PTR(X) X
+#define HALF_PIC_FINISH(STREAM)
#endif
@@ -235,6 +238,9 @@ while (0)
#define OPTIMIZATION_OPTIONS(LEVEL) \
{ \
+ flag_no_function_cse = TRUE; \
+ flag_gnu_linker = FALSE; \
+ \
if (LEVEL) \
{ \
flag_omit_frame_pointer = TRUE; \
@@ -375,10 +381,6 @@ while (0)
%{save-temps: }"
#endif
-#ifndef CC1PLUS_SPEC
-#define CC1PLUS_SPEC "%{!fgnu-binutils: -fno-gnu-binutils}"
-#endif
-
/* Preprocessor specs */
#ifndef CPP_SPEC
@@ -405,7 +407,7 @@ while (0)
/* Print subsidiary information on the compiler version in use. */
-#define MIPS_VERSION "[AL 1.1, MM 14]"
+#define MIPS_VERSION "[AL 1.1, MM 15]"
#ifndef MACHINE_TYPE
#define MACHINE_TYPE "BSD Mips"
diff --git a/gcc/config/mips/ultrix.h b/gcc/config/mips/ultrix.h
index dec658c..7b6d400 100644
--- a/gcc/config/mips/ultrix.h
+++ b/gcc/config/mips/ultrix.h
@@ -62,4 +62,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
our own exit function. Ultrix 4.x has this, 3.x probably does not. */
#define HAVE_ATEXIT
+/* Generate calls to memcpy, etc., not bcopy, etc. */
+#define TARGET_MEM_FUNCTIONS
+
#include "mips.h"