cppopts.texi (-undef): Fix texinfo warning.
authorGeoffrey Keating <geoffk@apple.com>
Fri, 16 May 2003 23:38:42 +0000 (23:38 +0000)
committerGeoffrey Keating <geoffk@gcc.gnu.org>
Fri, 16 May 2003 23:38:42 +0000 (23:38 +0000)
* doc/cppopts.texi (-undef): Fix texinfo warning.

* doc/cppopts.texi (-H): Document that -H works for PCH files too.
* cppfiles.c (validate_pch): When -H is used, print some information
about PCH files found.

From-SVN: r66894

gcc/ChangeLog
gcc/cppfiles.c
gcc/doc/cppopts.texi

index ce2dbef..73f772a 100644 (file)
@@ -1,3 +1,11 @@
+2003-05-16  Geoffrey Keating  <geoffk@apple.com>
+
+       * doc/cppopts.texi (-undef): Fix texinfo warning.
+
+       * doc/cppopts.texi (-H): Document that -H works for PCH files too.
+       * cppfiles.c (validate_pch): When -H is used, print some information
+       about PCH files found.
+
 2003-05-16  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
        * config/mips/t-elf: Remove obsolete rules adding dependencies on tm.h.
index 66865af..292026a 100644 (file)
@@ -293,6 +293,13 @@ validate_pch (pfile, filename, pchname)
     return NULL;
   if ((file->pch & 2) == 0)
     file->pch = pfile->cb.valid_pch (pfile, pchname, file->fd);
+  if (CPP_OPTION (pfile, print_include_names))
+    {
+      unsigned int i;
+      for (i = 1; i < pfile->line_maps.depth; i++)
+       putc ('.', stderr);
+      fprintf (stderr, "%c %s\n", INCLUDE_PCH_P (file) ? '!' : 'x', pchname);
+    }
   if (INCLUDE_PCH_P (file))
     {
       char *f = xstrdup (filename);
index 4c98c32..27530c7 100644 (file)
@@ -43,7 +43,7 @@ provided with a @option{-D} option.
 Do not predefine any system-specific or GCC-specific macros.  The
 standard predefined macros remain defined.
 @ifset cppmanual
-@xref{Standard Predefined Macros}
+@xref{Standard Predefined Macros}.
 @end ifset
 
 @item -I @var{dir}
@@ -636,7 +636,9 @@ execution, and report the final form of the include path.
 @opindex H
 Print the name of each header file used, in addition to other normal
 activities.  Each name is indented to show how deep in the
-@samp{#include} stack it is.
+@samp{#include} stack it is.  Precompiled header files are also
+printed, even if they are found to be invalid; an invalid precompiled
+header file is printed with @samp{...x} and a valid one with @samp{...!} .
 
 @item -version
 @itemx --version