This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Fix typo in flow.c:try_simplify_condjump
- To: gcc-patches at gcc dot gnu dot org
- Subject: Fix typo in flow.c:try_simplify_condjump
- From: kenner at vlsi1 dot ultra dot nyu dot edu (Richard Kenner)
- Date: Mon, 2 Jul 01 12:52:50 EDT
This shows up compiling GNAT on Alpha.
Mon Jul 2 12:50:51 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* flow.c (try_simplify_condjump): Fix typo in updating fallthru flags.
*** flow.c 2001/06/29 03:30:17 1.410
--- flow.c 2001/07/02 16:45:46
*************** try_simplify_condjump (src)
*** 2889,2893 ****
branch->flags |= EDGE_FALLTHRU;
! fallthru->flags &= EDGE_FALLTHRU;
flow_delete_block (next_block);
--- 2889,2893 ----
branch->flags |= EDGE_FALLTHRU;
! fallthru->flags &= ~EDGE_FALLTHRU;
flow_delete_block (next_block);