diff options
author | Ilya Enkovich <enkovich.gnu@gmail.com> | 2016-02-05 14:41:00 +0000 |
---|---|---|
committer | Ilya Enkovich <ienkovich@gcc.gnu.org> | 2016-02-05 14:41:00 +0000 |
commit | fd9794e37ac4845f1a6f37ffc83109793d792a3c (patch) | |
tree | 180907bdc473a0953440e7725c4e28b86ecacb3d /gcc/cgraphunit.c | |
parent | 76c85fbbe7bb698e56b757e5997069b569517150 (diff) | |
download | gcc-fd9794e37ac4845f1a6f37ffc83109793d792a3c.zip gcc-fd9794e37ac4845f1a6f37ffc83109793d792a3c.tar.gz gcc-fd9794e37ac4845f1a6f37ffc83109793d792a3c.tar.bz2 |
re PR target/69369 (internal compiler error: in remove_unreachable_nodes, at ipa.c:457)
gcc/
2016-02-05 Ilya Enkovich <enkovich.gnu@gmail.com>
PR target/69369
Revert r232560:
2016-01-19 Jan Hubicka <hubicka@ucw.cz>
* cgraphunit.c (cgraph_node::reset): Clear thunk info and
instrumented_version.
From-SVN: r233177
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index b95c172..2c49d7b 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -366,14 +366,12 @@ cgraph_node::reset (void) memset (&local, 0, sizeof (local)); memset (&global, 0, sizeof (global)); memset (&rtl, 0, sizeof (rtl)); - memset (&thunk, 0, sizeof (cgraph_thunk_info)); analyzed = false; definition = false; alias = false; transparent_alias = false; weakref = false; cpp_implicit_alias = false; - instrumented_version = NULL; remove_callees (); remove_all_references (); |