diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-03-27 04:02:28 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-03-27 04:02:28 +0000 |
commit | 73594827bcf4d56bc73f80eef9b5c1370c07e4f8 (patch) | |
tree | bba2a867a9af484338b26cd48b43e003bf4baa50 /gcc/tree-pass.h | |
parent | 99fe8cbdb9ff9ee6f47691e1ab4125300e1341c2 (diff) | |
download | linaro-gcc-73594827bcf4d56bc73f80eef9b5c1370c07e4f8.tar.gz linaro-gcc-73594827bcf4d56bc73f80eef9b5c1370c07e4f8.tar.bz2 linaro-gcc-73594827bcf4d56bc73f80eef9b5c1370c07e4f8.zip |
PR ipa/65076
* passes.def: Add pass_nothrow.
* ipa-pure-const.c: (pass_data_nothrow): New.
(pass_nothrow): New.
(pass_nothrow::execute): New.
(make_pass_nothrow): New.
* tree-pass.h (make_pass_nothrow): Declare.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@221719 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-pass.h')
-rw-r--r-- | gcc/tree-pass.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index b59ae7a39d6..bc8763db165 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -436,6 +436,7 @@ extern gimple_opt_pass *make_pass_remove_cgraph_callee_edges (gcc::context *ctxt); extern gimple_opt_pass *make_pass_build_cgraph_edges (gcc::context *ctxt); extern gimple_opt_pass *make_pass_local_pure_const (gcc::context *ctxt); +extern gimple_opt_pass *make_pass_nothrow (gcc::context *ctxt); extern gimple_opt_pass *make_pass_tracer (gcc::context *ctxt); extern gimple_opt_pass *make_pass_warn_unused_result (gcc::context *ctxt); extern gimple_opt_pass *make_pass_diagnose_tm_blocks (gcc::context *ctxt); |