diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2016-10-31 15:56:49 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2016-10-31 15:56:49 +0100 |
commit | 85771f28c84480e5fc9240b35bfc5f8ba606844a (patch) | |
tree | 77739180d0bb304fa1fdbf141b850270d8487b7e | |
parent | dd57b05e9681798cb23d774660b98466a6b511d4 (diff) | |
download | gcc-85771f28c84480e5fc9240b35bfc5f8ba606844a.zip gcc-85771f28c84480e5fc9240b35bfc5f8ba606844a.tar.gz gcc-85771f28c84480e5fc9240b35bfc5f8ba606844a.tar.bz2 |
alpha-passes.def: Swap pass_convert_to_eh_region_ranges and pass_shorten_branches positions.
* config/alpha/alpha-passes.def: Swap pass_convert_to_eh_region_ranges
and pass_shorten_branches positions.
From-SVN: r241702
-rw-r--r-- | gcc/config/alpha/alpha-passes.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/alpha/alpha-passes.def b/gcc/config/alpha/alpha-passes.def index d960e7c..977605a 100644 --- a/gcc/config/alpha/alpha-passes.def +++ b/gcc/config/alpha/alpha-passes.def @@ -17,5 +17,5 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ - INSERT_PASS_BEFORE (pass_shorten_branches, 1, pass_align_insns); INSERT_PASS_AFTER (pass_convert_to_eh_region_ranges, 1, pass_handle_trap_shadows); + INSERT_PASS_BEFORE (pass_shorten_branches, 1, pass_align_insns); |