From: Richard Stallman Date: Sat, 29 Aug 1992 03:18:36 +0000 (+0000) Subject: (BLOCK_END_NOTE): Macro definition added. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b3f0db1f59d2c381dff582bd12ad496406cab9f;p=gcc.git (BLOCK_END_NOTE): Macro definition added. (struct tree_block): `end_note' field added. From-SVN: r1988 --- diff --git a/gcc/tree.h b/gcc/tree.h index 185a493cf03..1848bd9205c 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -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. */