diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-09-02 21:01:30 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-09-02 21:01:30 +0000 |
commit | 64233515bd9e70a5abfd17a9f618646fbe9113c5 (patch) | |
tree | 730fa7e2436a13dbbf15cdcc2ec6ba9941acf980 /gcc/tree.h | |
parent | f74c97e83e2778dda2cd0748bbe0ace3aa59deb6 (diff) | |
download | gcc-64233515bd9e70a5abfd17a9f618646fbe9113c5.tar.gz |
* tree.h (maximum_field_alignment, set_alignment): New declarations.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8019 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 14ed555876e..bfb82f2f0c3 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -1249,6 +1249,12 @@ extern tree get_pending_sizes PROTO((void)); extern tree sizetype; +/* If nonzero, an upper limit on alignment of structure fields, in bits. */ +extern int maximum_field_alignment; + +/* If non-zero, the alignment of a bitsting or (power-)set value, in bits. */ +extern int set_alignment; + /* Concatenate two lists (chains of TREE_LIST nodes) X and Y by making the last node in X point to Y. Returns X, except if X is 0 returns Y. */ |