Commit 69a3d63d by Jeffrey A Law Committed by Jeff Law

* collect2.c (scan_libraries): Fix thinko.

From-SVN: r29140
parent 249169b3
Mon Sep 6 02:42:36 1999 Jeffrey A Law (law@cygnus.com)
* collect2.c (scan_libraries): Fix thinko.
* cse.c (delete_trivially_dead_insns): Do not skip the last
insn if it is a real insn.
......
......@@ -2570,7 +2570,7 @@ scan_libraries (prog_name)
void (*int_handler) ();
void (*quit_handler) ();
char *ldd_argv[4];
const char **ldd_argv = (const char **) real_ldd_argv;
const char **real_ldd_argv = (const char **) ldd_argv;
int pid;
int argc = 0;
int pipe_fd[2];
......
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