re PR preprocessor/39512 (linemap_init in lex.c does not initialize reallocator)

PR preprocessor/39512:
	* line-map.c (linemap_init): Initialize 'reallocator' field.

From-SVN: r145300
This commit is contained in:
Tom Tromey 2009-03-30 15:25:42 +00:00 committed by Tom Tromey
parent a37a7b8a01
commit c1a8a3c6ff
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2009-03-30 Tom Tromey <tromey@redhat.com>
PR preprocessor/39512:
* line-map.c (linemap_init): Initialize 'reallocator' field.
2009-03-30 Jakub Jelinek <jakub@redhat.com>
PR target/39558

View File

@ -41,6 +41,7 @@ linemap_init (struct line_maps *set)
set->highest_location = 0;
set->highest_line = 0;
set->max_column_hint = 0;
set->reallocator = 0;
}
/* Check for and warn about line_maps entered but not exited. */