Commit 5b3f0db1 by Richard Stallman

(BLOCK_END_NOTE): Macro definition added.

(struct tree_block):  `end_note' field added.

From-SVN: r1988
parent f47ee9f2
......@@ -484,6 +484,7 @@ struct tree_exp
#define BLOCK_CHAIN(NODE) TREE_CHAIN (NODE)
#define BLOCK_ABSTRACT_ORIGIN(NODE) ((NODE)->block.abstract_origin)
#define BLOCK_ABSTRACT(NODE) ((NODE)->block.abstract_flag)
#define BLOCK_END_NOTE(NODE) ((NODE)->block.end_note)
/* Nonzero means that this block is prepared to handle exceptions
listed in the BLOCK_VARS slot. */
......@@ -501,6 +502,7 @@ struct tree_block
union tree_node *subblocks;
union tree_node *supercontext;
union tree_node *abstract_origin;
struct rtx_def *end_note;
};
/* Define fields and accessors for nodes representing data types. */
......
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