basic-block.h (ENTRY_BLOCK, EXIT_BLOCK): Document that neither of them is…

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

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
parent 28300f5a
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> 2009-06-06 Ian Lance Taylor <iant@google.com>
* doc/extend.texi (Attribute Syntax): Document that C++ labels on * doc/extend.texi (Attribute Syntax): Document that C++ labels on
......
...@@ -491,7 +491,8 @@ extern bitmap_obstack reg_obstack; ...@@ -491,7 +491,8 @@ extern bitmap_obstack reg_obstack;
#define BB_HEAD(B) (B)->il.rtl->head_ #define BB_HEAD(B) (B)->il.rtl->head_
#define BB_END(B) (B)->il.rtl->end_ #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 ENTRY_BLOCK (0)
#define EXIT_BLOCK (1) #define EXIT_BLOCK (1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment