summaryrefslogtreecommitdiff
path: root/gcc/gensupport.c
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-03 04:24:01 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-03 04:24:01 +0000
commita5c088d4e31bf3257217d2f368dca57c18e9d98e (patch)
tree37ea22037f920e97ce155abc8dd8f4290af8dba6 /gcc/gensupport.c
parenteeaf6b144edb90ff6ff95822bab05f1470afb521 (diff)
downloadgcc-a5c088d4e31bf3257217d2f368dca57c18e9d98e.tar.gz
* system.h: Include filenames.h.
(IS_DIR_SEPARATOR, IS_ABSOLUTE_PATHNAME): Don't define. (DIR_SEPARATOR, DIR_SEPARATOR_2): If not already defined, define based on HAVE_DOS_BASED_FILE_SYSTEM. * config/i386/xm-cygwin.h, config/i386/xm-djgpp.h * config/i386/xm-mingw32.h: Don't define HAVE_DOS_BASED_FILE_SYSTEM, DIR_SEPARATOR, or DIR_SEPARATOR_2. * doc/hostconfig.texi: Update to match. * cppfiles.c, gcc.c, gensupport.c, protoize.c, config/i386/cygwin.h: Use IS_ABSOLUTE_PATH throughout. * gcc.c (DIR_UP): Delete, unused. * protoize.c (IS_SAME_PATH): Define in terms of FILENAME_CMP. (is_abspath): Delete. java: * jcf-path.c: Don't default-define PATH_SEPARATOR nor DIR_SEPARATOR. Use FILENAME_CMP. * jcf-write.c: Don't default-define DIR_SEPARATOR. * jcf.h: Delete COMPARE_FILENAMES definition. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68863 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gensupport.c')
-rw-r--r--gcc/gensupport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gensupport.c b/gcc/gensupport.c
index 32bbcf26028..a255a7254d1 100644
--- a/gcc/gensupport.c
+++ b/gcc/gensupport.c
@@ -195,7 +195,7 @@ process_include (rtx desc, int lineno)
FILE *input_file;
/* If specified file name is absolute, skip the include stack. */
- if (! IS_ABSOLUTE_PATHNAME (filename))
+ if (! IS_ABSOLUTE_PATH (filename))
{
struct file_name_list *stackp;