Commit d44dc666 authored by gchare's avatar gchare
Browse files

* include/line-map.h (struct line_maps):

Remove unused field last_listed. Update all users.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@176898 138bc75d-0d04-0410-961f-82ee72b054a4
parent 1c287e8d
2011-07-28 Gabriel Charette <gchare@google.com>
* include/line-map.h (struct line_maps):
Remove unused field last_listed. Update all users.
2011-07-28 H.J. Lu <hongjiu.lu@intel.com>
* configure.ac: Set need_64bit_hwint to yes for x86 targets.
......
......@@ -76,11 +76,6 @@ struct GTY(()) line_maps {
unsigned int cache;
/* The most recently listed include stack, if any, starts with
LAST_LISTED as the topmost including file. -1 indicates nothing
has been listed yet. */
int last_listed;
/* Depth of the include stack, including the current file. */
unsigned int depth;
......
......@@ -34,7 +34,6 @@ linemap_init (struct line_maps *set)
set->maps = NULL;
set->allocated = 0;
set->used = 0;
set->last_listed = -1;
set->trace_includes = false;
set->depth = 0;
set->cache = 0;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment