aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.c
diff options
context:
space:
mode:
authorZack Weinberg <zack@wolery.cumb.org>2000-06-21 23:08:17 +0000
committerZack Weinberg <zack@gcc.gnu.org>2000-06-21 23:08:17 +0000
commite605b0403e89c0286910889cfca158bfc2567cfa (patch)
tree6e4efa3389b627b15921c495d03be0193553df87 /gcc/cpplib.c
parent229e1e4c03db3866f442610e2694dc6f97335ca7 (diff)
downloadgcc-e605b0403e89c0286910889cfca158bfc2567cfa.zip
gcc-e605b0403e89c0286910889cfca158bfc2567cfa.tar.gz
gcc-e605b0403e89c0286910889cfca158bfc2567cfa.tar.bz2
cppfiles.c (cpp_make_system_header): New function.
* cppfiles.c (cpp_make_system_header): New function. * cpplib.h: Prototype it. * cpplib.c (do_line, do_pragma_system_header): Use it. * fix-header.c (read_scan_file): Use it. * fix-header.c (check_macro_names): Cast second arg of cpp_defined to const unsigned char *. (read_scan_file): Make getchar_call const unsigned char. From-SVN: r34641
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r--gcc/cpplib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c
index 3fc39dc..93798fa 100644
--- a/gcc/cpplib.c
+++ b/gcc/cpplib.c
@@ -603,23 +603,23 @@ do_line (pfile)
if (action_number == 1)
{
pfile->buffer_stack_depth++;
- ip->inc->sysp = 0;
+ cpp_make_system_header (pfile, ip, 0);
read_line_number (pfile, &action_number);
}
else if (action_number == 2)
{
pfile->buffer_stack_depth--;
- ip->inc->sysp = 0;
+ cpp_make_system_header (pfile, ip, 0);
read_line_number (pfile, &action_number);
}
if (action_number == 3)
{
- ip->inc->sysp = 1;
+ cpp_make_system_header (pfile, ip, 1);
read_line_number (pfile, &action_number);
}
if (action_number == 4)
{
- ip->inc->sysp = 2;
+ cpp_make_system_header (pfile, ip, 2);
read_line_number (pfile, &action_number);
}
}
@@ -978,7 +978,7 @@ do_pragma_system_header (pfile)
if (CPP_PREV_BUFFER (ip) == NULL)
cpp_warning (pfile, "#pragma system_header outside include file");
else
- ip->inc->sysp = 1;
+ cpp_make_system_header (pfile, ip, 1);
return 1;
}