gcc: Make strchr return value pointers const
authorMartin Storsjö <martin@martin.st>
Mon, 7 Sep 2020 11:18:42 +0000 (13:18 +0200)
committerJakub Jelinek <jakub@redhat.com>
Mon, 7 Sep 2020 11:20:21 +0000 (13:20 +0200)
commit3fe3efe5c141a88a80c1ecc6aebc7f15d6426f62
treed4832db5123a59b6a45fd2783e8f75d4e975784f
parent2b0df0a6ac79b34f5fac4f3d456e8e14db220e4a
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.
gcc/dwarf2out.c
libcpp/files.c