diff options
author | Richard Biener <rguenther@suse.de> | 2015-09-15 08:00:30 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2015-09-15 08:00:30 +0000 |
commit | a9dfad6dff5a02fd143455c0d6aac78de3606b18 (patch) | |
tree | fdbf640dbac078cde965835b450fd4b49398fdc4 /gcc/lto-streamer-out.c | |
parent | 07a4fb4bbf09300f60bcfbd7588c46bd63c6ac9f (diff) | |
download | gcc-a9dfad6dff5a02fd143455c0d6aac78de3606b18.zip gcc-a9dfad6dff5a02fd143455c0d6aac78de3606b18.tar.gz gcc-a9dfad6dff5a02fd143455c0d6aac78de3606b18.tar.bz2 |
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
Diffstat (limited to 'gcc/lto-streamer-out.c')
-rw-r--r-- | gcc/lto-streamer-out.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c index b6bc515..d8a7ced 100644 --- a/gcc/lto-streamer-out.c +++ b/gcc/lto-streamer-out.c @@ -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; } |