Commit a9dfad6d by Richard Biener Committed by Richard Biener

re PR lto/67568 (lto-streamer-in.c sanitizer runtime error: load of value 255,…

re PR lto/67568 (lto-streamer-in.c sanitizer runtime error: load of value 255, which is not a valid value for type 'bool')

2015-09-15  Richard Biener  <rguenther@suse.de>

	PR lto/67568
	* lto-streamer.h (lto_location_cache::current_sysp): Properly
	initialize.
	* lto-streamer-out.c (clear_line_info): Likewise.

From-SVN: r227779
parent 07a4fb4b
2015-09-15 Richard Biener <rguenther@suse.de>
PR lto/67568
* lto-streamer.h (lto_location_cache::current_sysp): Properly
initialize.
* lto-streamer-out.c (clear_line_info): Likewise.
2015-09-15 Richard Biener <rguenther@suse.de>
* doc/match-and-simplify.texi: Fix wording.
2015-09-15 Bin Cheng <bin.cheng@arm.com>
......
......@@ -66,6 +66,7 @@ clear_line_info (struct output_block *ob)
ob->current_file = NULL;
ob->current_line = 0;
ob->current_col = 0;
ob->current_sysp = false;
}
......
......@@ -320,7 +320,7 @@ public:
struct data_in *data_in);
lto_location_cache ()
: loc_cache (), accepted_length (0), current_file (NULL), current_line (0),
current_col (0), current_loc (UNKNOWN_LOCATION)
current_col (0), current_sysp (false), current_loc (UNKNOWN_LOCATION)
{
gcc_assert (!current_cache);
current_cache = this;
......
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