Commit d996ef70 by Kai Tietz Committed by Kai Tietz

re PR bootstrap/47055 ("make profiledbootstrap" fails on MSYS/mingw-w64)

2011-01-04  Kai Tietz  <kai.tietz@onevision.com>

        PR bootstrap/47055
        * libgcov.c (gcov_exit): Check for HAS_DRIVE_SPEC.

From-SVN: r168475
parent 7f957ac9
2011-01-04 Kai Tietz <kai.tietz@onevision.com>
PR bootstrap/47055
* libgcov.c (gcov_exit): Check for HAS_DRIVE_SPEC.
2011-01-04 Philipp Thomas <pth@suse.de>
* config/microblaze/microbalse.opt (mxl-float-convert): Fix
......
......@@ -283,7 +283,7 @@ gcov_exit (void)
}
}
/* Update complete filename with stripped original. */
if (!IS_DIR_SEPARATOR (*fname))
if (!IS_DIR_SEPARATOR (*fname) && !HAS_DRIVE_SPEC(fname))
{
strcpy (gi_filename_up, "/");
strcpy (gi_filename_up + 1, fname);
......
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