Commit f01c9bcd by Douglas B Rupp Committed by Richard Kenner

* gcc.c (delete_if_ordinary): Delete all versions.

From-SVN: r48450
parent d022094f
2002-01-01 Douglas B Rupp <rupp@gnat.com>
* gcc.c (delete_if_ordinary): Delete all versions.
2002-01-01 Hans-Peter Nilsson <hp@bitrange.com>
* config/mmix/mmix.md: Update FIXME to not mention
......
/* Compiler driver program that can handle many languages.
Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001 Free Software Foundation, Inc.
1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of GCC.
......@@ -2111,7 +2111,9 @@ delete_if_ordinary (name)
if (i == 'y' || i == 'Y')
#endif /* DEBUG */
if (stat (name, &st) >= 0 && S_ISREG (st.st_mode))
/* On VMS, more than one version of the temporary file may have been
created. This ensures we delete all of them. */
while (stat (name, &st) >= 0 && S_ISREG (st.st_mode))
if (unlink (name) < 0)
if (verbose_flag)
perror_with_name (name);
......
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