diff options
author | Per Bothner <bothner@gcc.gnu.org> | 1994-09-02 14:01:30 -0700 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 1994-09-02 14:01:30 -0700 |
commit | 8294accf6dc5c51c9112478f5025faa2b8b5931a (patch) | |
tree | 730fa7e2436a13dbbf15cdcc2ec6ba9941acf980 /gcc | |
parent | ab72fb3bfdf4539b49e37124ae2cccf5aefbc559 (diff) | |
download | gcc-8294accf6dc5c51c9112478f5025faa2b8b5931a.zip gcc-8294accf6dc5c51c9112478f5025faa2b8b5931a.tar.gz gcc-8294accf6dc5c51c9112478f5025faa2b8b5931a.tar.bz2 |
* tree.h (maximum_field_alignment, set_alignment): New declarations.
From-SVN: r8019
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/tree.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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. */ |