Commit 099ff66c by Andreas Jaeger

* gcc.c (pfatal_pexecute): Remove unused local function.

From-SVN: r99732
parent 2acf977b
2005-05-15 Andreas Jaeger <aj@suse.de>
* gcc.c (pfatal_pexecute): Remove unused local function.
2005-05-15 Richard Sandiford <rsandifo@redhat.com> 2005-05-15 Richard Sandiford <rsandifo@redhat.com>
* optc-gen.awk: Remove excess indentation. * optc-gen.awk: Remove excess indentation.
...@@ -229,7 +233,7 @@ ...@@ -229,7 +233,7 @@
2005-05-13 Richard Henderson <rth@redhat.com> 2005-05-13 Richard Henderson <rth@redhat.com>
* function.c (instantiate_virtual_regs_in_insn): Do not simplify * function.c (instantiate_virtual_regs_in_insn): Do not simplify
addition to move unless dest is a register. Do not skip addition to move unless dest is a register. Do not skip
instantiation in dest on addition simplification. instantiation in dest on addition simplification.
2005-05-13 Hans-Peter Nilsson <hp@axis.com> 2005-05-13 Hans-Peter Nilsson <hp@axis.com>
...@@ -275,7 +279,7 @@ ...@@ -275,7 +279,7 @@
2005-05-12 Steven Bosscher <stevenb@suse.de> 2005-05-12 Steven Bosscher <stevenb@suse.de>
Stuart Hastings <stuart@apple.com> Stuart Hastings <stuart@apple.com>
Jan Hubicka <jh@suse.cz> Jan Hubicka <jh@suse.cz>
* except.c (duplicate_eh_region_1, duplicate_eh_region_2, * except.c (duplicate_eh_region_1, duplicate_eh_region_2,
duplicate_eh_regions): New functions, based on old duplicate_eh_regions): New functions, based on old
implementation removed with RTL inliner. implementation removed with RTL inliner.
...@@ -2270,7 +2274,7 @@ ...@@ -2270,7 +2274,7 @@
* config/mmix/mmix.opt: New file. * config/mmix/mmix.opt: New file.
* config/mmix/mmix.h: Move options-related comments to mmix.opt. * config/mmix/mmix.h: Move options-related comments to mmix.opt.
(mmix_cc1_ignored_option): Don't declare. (mmix_cc1_ignored_option): Don't declare.
(TARGET_OPTIONS, TARGET_MASK_LIBFUNCS, TARGET_MASK_ABI_GNU) (TARGET_OPTIONS, TARGET_MASK_LIBFUNCS, TARGET_MASK_ABI_GNU)
(TARGET_MASK_FCMP_EPSILON, TARGET_MASK_ZERO_EXTEND) (TARGET_MASK_FCMP_EPSILON, TARGET_MASK_ZERO_EXTEND)
(TARGET_MASK_KNUTH_DIVISION, TARGET_MASK_TOPLEVEL_SYMBOLS) (TARGET_MASK_KNUTH_DIVISION, TARGET_MASK_TOPLEVEL_SYMBOLS)
...@@ -5424,8 +5428,8 @@ ...@@ -5424,8 +5428,8 @@
2005-04-13 Matt Thomas <matt@3am-software.com> 2005-04-13 Matt Thomas <matt@3am-software.com>
* config/rs6000/sysv4.h (NO_IMPLICIT_EXTERN_C): undefine before * config/rs6000/sysv4.h (NO_IMPLICIT_EXTERN_C): undefine before
defining. defining.
2005-04-13 Kazu Hirata <kazu@cs.umass.edu> 2005-04-13 Kazu Hirata <kazu@cs.umass.edu>
...@@ -7569,7 +7573,7 @@ ...@@ -7569,7 +7573,7 @@
* modulo-sched.c (undo_replace_buff_elem): New structure. * modulo-sched.c (undo_replace_buff_elem): New structure.
(kernel_number_of_cycles, ps_unschedule_node, (kernel_number_of_cycles, ps_unschedule_node,
undo_generate_reg_moves,free_undo_replace_buff, undo_generate_reg_moves,free_undo_replace_buff,
undo_permute_partial_schedule, loop_single_full_bb_p, undo_permute_partial_schedule, loop_single_full_bb_p,
SIMPLE_SMS_LOOP_P, loop_canon_p, canon_loop, SIMPLE_SMS_LOOP_P, loop_canon_p, canon_loop,
build_loops_structure, get_sched_window): New. build_loops_structure, get_sched_window): New.
(generate_reg_moves): Return undo_replace_buff_elem and other (generate_reg_moves): Return undo_replace_buff_elem and other
......
...@@ -328,7 +328,6 @@ static int default_arg (const char *, int); ...@@ -328,7 +328,6 @@ static int default_arg (const char *, int);
static void set_multilib_dir (void); static void set_multilib_dir (void);
static void print_multilib_info (void); static void print_multilib_info (void);
static void perror_with_name (const char *); static void perror_with_name (const char *);
static void pfatal_pexecute (const char *, const char *) ATTRIBUTE_NORETURN;
static void notice (const char *, ...) ATTRIBUTE_PRINTF_1; static void notice (const char *, ...) ATTRIBUTE_PRINTF_1;
static void display_help (void); static void display_help (void);
static void add_preprocessor_option (const char *, int); static void add_preprocessor_option (const char *, int);
...@@ -6706,24 +6705,6 @@ perror_with_name (const char *name) ...@@ -6706,24 +6705,6 @@ perror_with_name (const char *name)
error ("%s: %s", name, xstrerror (errno)); error ("%s: %s", name, xstrerror (errno));
} }
static void
pfatal_pexecute (const char *errmsg_fmt, const char *errmsg_arg)
{
if (errmsg_arg)
{
int save_errno = errno;
/* Space for trailing '\0' is in %s. */
char *msg = xmalloc (strlen (errmsg_fmt) + strlen (errmsg_arg));
sprintf (msg, errmsg_fmt, errmsg_arg);
errmsg_fmt = msg;
errno = save_errno;
}
pfatal_with_name (errmsg_fmt);
}
/* Output an error message and exit. */ /* Output an error message and exit. */
void void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment