diff options
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r-- | gcc/gcov.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/gcov.c b/gcc/gcov.c index aad22a8cf0e..62aa96ea3dc 100644 --- a/gcc/gcov.c +++ b/gcc/gcov.c @@ -1051,12 +1051,7 @@ output_data () { /* If this is a relative file name, and an object directory has been specified, then make it relative to the object directory name. */ - if (! (*s_ptr->name == '/' || *s_ptr->name == DIR_SEPARATOR - /* Check for disk name on MS-DOS-based systems. */ - || (DIR_SEPARATOR == '\\' - && s_ptr->name[1] == ':' - && (s_ptr->name[2] == DIR_SEPARATOR - || s_ptr->name[2] == '/'))) + if (! IS_ABSOLUTE_PATHNAME (s_ptr->name) && object_directory != 0 && *object_directory != '\0') { |