On 2012-10-12 12:19 , Jakub Jelinek wrote:
2012-10-12 Jakub Jelinek <ja...@redhat.com>
* asan.c (build_check_stmt): Rename join_bb variable to else_bb.
(gate_asan_O0): New function.
(pass_asan_O0): New variable.
* passes.c (init_optimization_passes): Add pass_asan_O0.
* tree-pass.h (pass_asan_O0): New declaration.
OK. Thanks.
--- gcc/passes.c.jj 2012-10-11 19:10:39.000000000 +0200
+++ gcc/passes.c 2012-10-12 10:03:18.523456291 +0200
@@ -1545,6 +1545,7 @@ init_optimization_passes (void)
NEXT_PASS (pass_tm_edges);
}
NEXT_PASS (pass_lower_complex_O0);
+ NEXT_PASS (pass_asan_O0);
Any particular reason to place it here? Not that it matters much. Just
curious.
Diego.