diff options
author | Martin Storsjö <martin@martin.st> | 2020-09-07 13:18:42 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2020-09-07 13:20:21 +0200 |
commit | 3fe3efe5c141a88a80c1ecc6aebc7f15d6426f62 (patch) | |
tree | d4832db5123a59b6a45fd2783e8f75d4e975784f /gcc | |
parent | 2b0df0a6ac79b34f5fac4f3d456e8e14db220e4a (diff) | |
download | gcc-3fe3efe5c141a88a80c1ecc6aebc7f15d6426f62.zip gcc-3fe3efe5c141a88a80c1ecc6aebc7f15d6426f62.tar.gz gcc-3fe3efe5c141a88a80c1ecc6aebc7f15d6426f62.tar.bz2 |
gcc: Make strchr return value pointers const
This fixes compilation of codepaths for dos-like filesystems
with Clang. When built with clang, it treats C input files as C++
when the compiler driver is invoked in C++ mode, triggering errors
when the return value of strchr() on a pointer to const is assigned
to a pointer to non-const variable.
This matches similar variables outside of the ifdefs for dos-like
path handling.
2020-09-07 Martin Storsjö <martin@martin.st>
gcc/
* dwarf2out.c (file_name_acquire): Make a strchr return value
pointer to const.
libcpp/
* files.c (remap_filename): Make a strchr return value pointer
to const.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/dwarf2out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index b6ab49b..4096c0c0 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -12118,7 +12118,7 @@ file_name_acquire (dwarf_file_data **slot, file_name_acquire_data *fnad) f = strrchr (f, DIR_SEPARATOR); #if defined (DIR_SEPARATOR_2) { - char *g = strrchr (fi->path, DIR_SEPARATOR_2); + const char *g = strrchr (fi->path, DIR_SEPARATOR_2); if (g != NULL) { |