Fix copy&paste bug in function-tests.c
authorDavid Malcolm <dmalcolm@redhat.com>
Tue, 19 Jul 2016 13:04:32 +0000 (13:04 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Tue, 19 Jul 2016 13:04:32 +0000 (13:04 +0000)
gcc/ChangeLog:
* function-tests.c (selftest::verify_three_block_rtl_cfg): Verify
the flags of the exit block and bb2, not just the entry block.

From-SVN: r238470

gcc/ChangeLog
gcc/function-tests.c

index 271706c02001e5bae72f713ab461de4ddeb19673..b00409c79517b5efd514b56cbda1ff1424377e75 100644 (file)
@@ -1,3 +1,8 @@
+2016-07-19  David Malcolm  <dmalcolm@redhat.com>
+
+       * function-tests.c (selftest::verify_three_block_rtl_cfg): Verify
+       the flags of the exit block and bb2, not just the entry block.
+
 2016-07-19  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/71901
index edd355fa15338a23454af5d59ff37dba29ff44a0..a59a066448b8e733d0e73f096f5ba9091fa29b50 100644 (file)
@@ -433,14 +433,14 @@ verify_three_block_rtl_cfg (function *fun)
 
   basic_block exit = EXIT_BLOCK_PTR_FOR_FN (fun);
   ASSERT_TRUE (exit != NULL);
-  ASSERT_EQ (BB_RTL, entry->flags & BB_RTL);
+  ASSERT_EQ (BB_RTL, exit->flags & BB_RTL);
   ASSERT_EQ (NULL, BB_HEAD (exit));
 
   /* The "real" basic block should be flagged as RTL, and have one
      or more insns.  */
   basic_block bb2 = get_real_block (fun);
   ASSERT_TRUE (bb2 != NULL);
-  ASSERT_EQ (BB_RTL, entry->flags & BB_RTL);
+  ASSERT_EQ (BB_RTL, bb2->flags & BB_RTL);
   ASSERT_TRUE (BB_HEAD (bb2) != NULL);
 }