From: Per Bothner Date: Tue, 20 Jan 2004 07:35:21 +0000 (-0800) Subject: Fix patch oops. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=54020b29a8760669d695760325b82e97f260df2c;p=gcc.git Fix patch oops. From-SVN: r76201 --- diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index f7fdec6b5e6..cd735f59834 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -1257,7 +1257,7 @@ validate_pch (cpp_reader *pfile, _cpp_file *file, const char *pchname) if (CPP_OPTION (pfile, print_include_names)) { unsigned int i; - for (i = 1; i < pfile->line_maps.depth; i++) + for (i = 1; i < pfile->line_table->depth; i++) putc ('.', stderr); fprintf (stderr, "%c %s\n", valid ? '!' : 'x', pchname);