]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
basic-block.h (ENTRY_BLOCK, EXIT_BLOCK): Document that neither of them is supposed...
authorBernhard Reutner-Fischer <aldot@gcc.gnu.org>
Sun, 7 Jun 2009 19:26:59 +0000 (21:26 +0200)
committerBernhard Reutner-Fischer <aldot@gcc.gnu.org>
Sun, 7 Jun 2009 19:26:59 +0000 (21:26 +0200)
2009-06-07  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>

* basic-block.h (ENTRY_BLOCK, EXIT_BLOCK): Document that neither of
them is supposed to hold actual statements.

From-SVN: r148256

gcc/ChangeLog
gcc/basic-block.h

index c68945b9190aed3b2ec488da09a306a6915a7aa0..6e6ac9c0c1a7b128be6c1a7c6888470971374ad9 100644 (file)
@@ -1,3 +1,8 @@
+2009-06-07  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
+
+       * basic-block.h (ENTRY_BLOCK, EXIT_BLOCK): Document that neither of
+       them is supposed to hold actual statements.
+
 2009-06-06  Ian Lance Taylor  <iant@google.com>
 
        * doc/extend.texi (Attribute Syntax): Document that C++ labels on
index 901845a686d82dfa30c37e01cd25a74a7f23f6fb..72bdf5c6504fde003e1f0532ae9843f358ee2852 100644 (file)
@@ -491,7 +491,8 @@ extern bitmap_obstack reg_obstack;
 #define BB_HEAD(B)      (B)->il.rtl->head_
 #define BB_END(B)       (B)->il.rtl->end_
 
-/* Special block numbers [markers] for entry and exit.  */
+/* Special block numbers [markers] for entry and exit.
+   Neither of them is supposed to hold actual statements.  */
 #define ENTRY_BLOCK (0)
 #define EXIT_BLOCK (1)