diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-04-01 08:55:58 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-04-01 08:55:58 +0000 |
commit | 7e30ab00dbaa900c13f0a76b040a40f55ad1fd34 (patch) | |
tree | 72b2468cddde4e3aeb4b740f1d56e93fecf2f041 /gcc/gimple.h | |
parent | 4f09b43fbec95e8bba1273fc02156f32de8fdc3e (diff) | |
download | gcc-7e30ab00dbaa900c13f0a76b040a40f55ad1fd34.tar.gz |
2014-04-01 Richard Biener <rguenther@suse.de>
* gimple.h (struct gimple_statement_base): Align subcode to
16 bits.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@208978 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gimple.h')
-rw-r--r-- | gcc/gimple.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/gimple.h b/gcc/gimple.h index 0e80d2eb700..11959a82e62 100644 --- a/gcc/gimple.h +++ b/gcc/gimple.h @@ -166,6 +166,9 @@ struct GTY((desc ("gimple_statement_structure (&%h)"), tag ("GSS_BASE"), /* Nonzero if this statement contains volatile operands. */ unsigned has_volatile_ops : 1; + /* Padding to get subcode to 16 bit alignment. */ + unsigned pad : 1; + /* The SUBCODE field can be used for tuple-specific flags for tuples that do not require subcodes. Note that SUBCODE should be at least as wide as tree codes, as several tuples store tree codes |