include:
* safe-ctype.h: New file. libiberty: * safe-ctype.c: New file. * Makefile.in (CFILES): Add safe-ctype.c. (REQUIRED_OFILES): Add safe-ctype.o. * argv.c: Define ISBLANK and use it, not isspace. * basename.c, cplus-dem.c, fnmatch.c, pexecute.c, strtod.c, strtol.c, strtoul.c: Include safe-ctype.h, not ctype.h. Use uppercase ctype macros. Don't test ISUPPER(c)/ISLOWER(c) before calling TOLOWER(c)/TOUPPER(c). gcc: * Makefile.in (HOST_RTL): Add safe-ctype.o. (safe-ctype.o): New rule. * system.h: Include safe-ctype.h, not ctype.h. No need to wrap ctype macros. * cpphash.h: Zap IStable and related macros. Define is_* in terms of safe-ctype.h macros. * cppinit.c: Delete the IStable and all related code. * tradcpp.c: Delete is_idchar, is_idstart, is_hor_space, and is_space arrays. Delete initialize_char_syntax. Change all references to the above arrays to use macros instead. * tradcpp.h: Define is_idchar, is_idstart, is_space, and is_nvspace in terms of safe_ctype.h's macros. * tradcif.y: is_idchar, is_idstart are macros not arrays. * config/i370/i370.c, config/winnt/dirent.c, config/winnt/fixinc-nt.c, config/winnt/ld.c: Use uppercase ctype macros. If we included ctype.h, include safe-ctype.h instead. * fixinc/fixfixes.c: Use uppercase ctype macros. Don't test ISLOWER(c) before calling TOUPPER(c). * fixinc/fixincl.c (extract_quoted_files): Simplify out some gunk. * fixinc/gnu-regex.c: Include safe-ctype.h, not ctype.h. No need to wrap ctype macros. Don't test ISUPPER(x) before calling TOLOWER(x). gcc/ch: * lex.c: Don't bother checking whether ISUPPER(c) before calling TOLOWER(c). Don't bother checking whether isascii(c) before testing ISSPACE(c); ISSPACE(c) includes '\n'. gcc/f: * Make-lang.in: Link f/fini with safe-ctype.o. * bad.c: Don't test ISUPPER(c) || ISLOWER(c) before calling TOUPPER(c). * com.c: Use TOUPPER, not ffesrc_toupper. * fini.c: Don't test ISALPHA(c) before calling TOUPPER(c)/TOLOWER(c). * intrin.c: Don't test IN_CTYPE_DOMAIN(c). * src.c: Delete ffesrc_toupper_ and ffesrc_tolower_ and their initializing code; use TOUPPER and TOLOWER instead of ffesrc_toupper and ffesrc_tolower. * src.h: Don't declare ffesrc_toupper_ or ffesrc_tolower_. Don't define ffesrc_toupper or ffesrc_tolower. gcc/java: * jvgenmain.c: Use ISPRINT not isascii. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38124 138bc75d-0d04-0410-961f-82ee72b054a4
Showing
- gcc/ChangeLog 162 additions, 133 deletionsgcc/ChangeLog
- gcc/Makefile.in 6 additions, 1 deletiongcc/Makefile.in
- gcc/ch/ChangeLog 587 additions, 581 deletionsgcc/ch/ChangeLog
- gcc/ch/lex.c 4 additions, 5 deletionsgcc/ch/lex.c
- gcc/config/i370/i370.c 7 additions, 7 deletionsgcc/config/i370/i370.c
- gcc/config/winnt/dirent.c 3 additions, 3 deletionsgcc/config/winnt/dirent.c
- gcc/config/winnt/fixinc-nt.c 1 addition, 1 deletiongcc/config/winnt/fixinc-nt.c
- gcc/config/winnt/ld.c 1 addition, 1 deletiongcc/config/winnt/ld.c
- gcc/cpphash.h 10 additions, 19 deletionsgcc/cpphash.h
- gcc/cppinit.c 2 additions, 43 deletionsgcc/cppinit.c
- gcc/f/ChangeLog 22 additions, 9 deletionsgcc/f/ChangeLog
- gcc/f/Make-lang.in 2 additions, 2 deletionsgcc/f/Make-lang.in
- gcc/f/bad.c 1 addition, 1 deletiongcc/f/bad.c
- gcc/f/com.c 1 addition, 1 deletiongcc/f/com.c
- gcc/f/fini.c 3 additions, 9 deletionsgcc/f/fini.c
- gcc/f/intrin.c 0 additions, 4 deletionsgcc/f/intrin.c
- gcc/f/src.c 14 additions, 32 deletionsgcc/f/src.c
- gcc/f/src.h 0 additions, 4 deletionsgcc/f/src.h
- gcc/fixinc/fixfixes.c 8 additions, 12 deletionsgcc/fixinc/fixfixes.c
- gcc/fixinc/fixincl.c 1 addition, 7 deletionsgcc/fixinc/fixincl.c
Loading
Please register or sign in to comment