aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-08-29 03:18:36 +0000
committerRichard Stallman <rms@gnu.org>1992-08-29 03:18:36 +0000
commit5b3f0db1f59d2c381dff582bd12ad496406cab9f (patch)
treea2992c0a0e95e6a9f15398e327b729fcb592f509 /gcc
parentf47ee9f26e76d69459ce6f1db367da63ff7ac6c9 (diff)
downloadgcc-5b3f0db1f59d2c381dff582bd12ad496406cab9f.zip
gcc-5b3f0db1f59d2c381dff582bd12ad496406cab9f.tar.gz
gcc-5b3f0db1f59d2c381dff582bd12ad496406cab9f.tar.bz2
(BLOCK_END_NOTE): Macro definition added.
(struct tree_block): `end_note' field added. From-SVN: r1988
Diffstat (limited to 'gcc')
-rw-r--r--gcc/tree.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index 185a493..1848bd9 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. */