Commit bc9ec75f by Jakub Jelinek Committed by Jakub Jelinek

passes.c (init_optimization_passes): Add pass_asan and pass_tsan to -Og optimization passes.

	* passes.c (init_optimization_passes): Add pass_asan and pass_tsan
	to -Og optimization passes.

From-SVN: r193850
parent 4ba5ca46
2012-11-27 Jakub Jelinek <jakub@redhat.com>
* passes.c (init_optimization_passes): Add pass_asan and pass_tsan
to -Og optimization passes.
2012-11-27 H.J. Lu <hongjiu.lu@intel.com>
Markus Trippelsdorf <markus@trippelsdorf.de>
......@@ -1536,6 +1536,8 @@ init_optimization_passes (void)
/* Copy propagation also copy-propagates constants, this is necessary
to forward object-size results properly. */
NEXT_PASS (pass_copy_prop);
NEXT_PASS (pass_asan);
NEXT_PASS (pass_tsan);
NEXT_PASS (pass_rename_ssa_copies);
NEXT_PASS (pass_dce);
/* Fold remaining builtins. */
......
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