From bb6555edede5a610fe3ca486b6fa3f64470a68fb Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Sat, 13 May 2000 06:38:34 +0000 Subject: 2000-05-12 H.J. Lu * nlmconv.c (temp_filename): Removed. * nlmconv.c (link_inputs): Use make_temp_file () instead of choose_temp_base (). * objdump.c (display_target_list): Likewise. (display_info_table): Likewise. --- binutils/nlmconv.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'binutils/nlmconv.c') diff --git a/binutils/nlmconv.c b/binutils/nlmconv.c index 26602d7b6a..450ac1454b 100644 --- a/binutils/nlmconv.c +++ b/binutils/nlmconv.c @@ -2086,9 +2086,6 @@ powerpc_mangle_relocs (outbfd, insec, relocs_ptr, reloc_count_ptr, contents, #define LD_NAME "ld" #endif -/* Temporary file name base. */ -static char *temp_filename; - /* The user has specified several input files. Invoke the linker to link them all together, and convert and delete the resulting output file. */ @@ -2137,10 +2134,7 @@ link_inputs (inputs, ld) if (ld == NULL) ld = (char *) LD_NAME; - temp_filename = choose_temp_base (); - - unlink_on_exit = xmalloc (strlen (temp_filename) + 3); - sprintf (unlink_on_exit, "%s.O", temp_filename); + unlink_on_exit = make_temp_file (".O"); argv[0] = ld; argv[1] = (char *) "-Ur"; -- cgit v1.2.1