diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-07-26 12:31:21 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-07-26 12:31:21 +0000 |
commit | 9e27929044d9039350c5750986f10d0c047c370c (patch) | |
tree | 68999a2cd56f94cd0921bbc2906c43ad1d5bfd60 /gnu | |
parent | 60cf5b23f24d857aab2bfcb351c293fee384bdc7 (diff) |
From gcc devel sources: make_temp_file -> mips_make_temp_file to avoid
conflict with libiberty.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/egcs/gcc/config/mips/mips.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/egcs/gcc/config/mips/mips.c b/gnu/egcs/gcc/config/mips/mips.c index 20caaa44179..0de8ce2749d 100644 --- a/gnu/egcs/gcc/config/mips/mips.c +++ b/gnu/egcs/gcc/config/mips/mips.c @@ -93,7 +93,7 @@ static int m16_check_op PROTO ((rtx, int, int, int)); static void block_move_loop PROTO ((rtx, rtx, int, int, rtx, rtx)); static void block_move_call PROTO ((rtx, rtx, rtx)); -static FILE *make_temp_file PROTO ((void)); +static FILE *mips_make_temp_file PROTO ((void)); static void save_restore_insns PROTO ((int, rtx, long, FILE *)); static void mips16_output_gp_offset PROTO ((FILE *, rtx)); @@ -5076,7 +5076,7 @@ mips_output_external_libcall (file, name) #endif static FILE * -make_temp_file () +mips_make_temp_file () { FILE *stream; const char *base = getenv ("TMPDIR"); @@ -5295,7 +5295,7 @@ mips_asm_file_start (stream) if (TARGET_FILE_SWITCHING && ! TARGET_MIPS16) { asm_out_data_file = stream; - asm_out_text_file = make_temp_file (); + asm_out_text_file = mips_make_temp_file (); } else |