aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto-streamer-out.c
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2015-09-15 08:00:30 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2015-09-15 08:00:30 +0000
commita9dfad6dff5a02fd143455c0d6aac78de3606b18 (patch)
treefdbf640dbac078cde965835b450fd4b49398fdc4 /gcc/lto-streamer-out.c
parent07a4fb4bbf09300f60bcfbd7588c46bd63c6ac9f (diff)
downloadgcc-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.c1
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;
}