diff options
author | Joseph Myers <jsm28@cam.ac.uk> | 2000-11-02 19:03:59 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2000-11-02 19:03:59 +0000 |
commit | 9473c5226bfe4c2a3d0045028921a00a167e5c40 (patch) | |
tree | 79fd392a778483e0dba0d31c32d9d005dc4fdeeb /gcc/cp/dump.c | |
parent | 0304bbad379d530d08ca2aa11289875e71a44aa6 (diff) | |
download | gcc-9473c5226bfe4c2a3d0045028921a00a167e5c40.zip gcc-9473c5226bfe4c2a3d0045028921a00a167e5c40.tar.gz gcc-9473c5226bfe4c2a3d0045028921a00a167e5c40.tar.bz2 |
* collect2.c (main, write_c_file_stat), gcc.c (translate_options,
process_command, main), gcov.c (open_files, output_data), tlink.c
(frob_extension, scan_linker_output), toplev.c
(file_name_nondirectory): Use strchr () and strrchr () instead of
index () and rindex ().
cp:
* dump.c (dequeue_and_dump), lex.c (interface_strcmp), method.c
(build_overload_value), repo.c (open_repo_file), xref.c
(open_xref_file): Use strchr () and strrchr () instead of index ()
and rindex ().
f:
* com.c (open_include_file, ffecom_open_include_): Use strchr ()
and strrchr () instead of index () and rindex ().
From-SVN: r37206
Diffstat (limited to 'gcc/cp/dump.c')
-rw-r--r-- | gcc/cp/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/dump.c b/gcc/cp/dump.c index d528e1c..618a714 100644 --- a/gcc/cp/dump.c +++ b/gcc/cp/dump.c @@ -378,7 +378,7 @@ dequeue_and_dump (di) /* And a source position. */ if (DECL_SOURCE_FILE (t)) { - const char *filename = rindex (DECL_SOURCE_FILE (t), '/'); + const char *filename = strrchr (DECL_SOURCE_FILE (t), '/'); if (!filename) filename = DECL_SOURCE_FILE (t); else |