Commit 468afa1a by Richard Biener Committed by Richard Biener

re PR bootstrap/80509 (ICE in cc1 during selftests)

2017-04-25  Richard Biener  <rguenther@suse.de>

	PR middle-end/80509
	* passes.c (pass_manager::pass_manager): Initialize
	m_name_to_pass_map.

From-SVN: r247171
parent 89b6c83e
2017-04-25 Richard Biener <rguenther@suse.de> 2017-04-25 Richard Biener <rguenther@suse.de>
PR middle-end/80509
* passes.c (pass_manager::pass_manager): Initialize
m_name_to_pass_map.
2017-04-25 Richard Biener <rguenther@suse.de>
PR tree-optimization/79201 PR tree-optimization/79201
* tree-ssa-sink.c (statement_sink_location): Handle calls. * tree-ssa-sink.c (statement_sink_location): Handle calls.
......
...@@ -1532,7 +1532,7 @@ pass_manager::pass_manager (context *ctxt) ...@@ -1532,7 +1532,7 @@ pass_manager::pass_manager (context *ctxt)
: all_passes (NULL), all_small_ipa_passes (NULL), all_lowering_passes (NULL), : all_passes (NULL), all_small_ipa_passes (NULL), all_lowering_passes (NULL),
all_regular_ipa_passes (NULL), all_regular_ipa_passes (NULL),
all_late_ipa_passes (NULL), passes_by_id (NULL), passes_by_id_size (0), all_late_ipa_passes (NULL), passes_by_id (NULL), passes_by_id_size (0),
m_ctxt (ctxt) m_ctxt (ctxt), m_name_to_pass_map (NULL)
{ {
opt_pass **p; opt_pass **p;
......
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