* tree.h (DECL_ALIGN_UNIT): New macro.
From-SVN: r36964
This commit is contained in:
parent
afee2a52da
commit
971774bbc1
@ -1,3 +1,7 @@
|
||||
2000-10-20 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* tree.h (DECL_ALIGN_UNIT): New macro.
|
||||
|
||||
2000-10-14 Marek Michalkiewicz <marekm@linux.org.pl>
|
||||
|
||||
* config/avr/avr-protos.h (avr_output_bld): New.
|
||||
|
@ -1309,8 +1309,10 @@ struct tree_type
|
||||
#define DECL_SIZE(NODE) (DECL_CHECK (NODE)->decl.size)
|
||||
/* Likewise for the size in bytes. */
|
||||
#define DECL_SIZE_UNIT(NODE) (DECL_CHECK (NODE)->decl.size_unit)
|
||||
/* Holds the alignment required for the datum. */
|
||||
/* Holds the alignment required for the datum, in bits. */
|
||||
#define DECL_ALIGN(NODE) (DECL_CHECK (NODE)->decl.u1.a.align)
|
||||
/* The alignment of NODE, in bytes. */
|
||||
#define DECL_ALIGN_UNIT(NODE) (DECL_ALIGN (NODE) / BITS_PER_UNIT)
|
||||
/* For FIELD_DECLs, off_align holds the number of low-order bits of
|
||||
DECL_FIELD_OFFSET which are known to be always zero.
|
||||
DECL_OFFSET_ALIGN thus returns the alignment that DECL_FIELD_OFFSET
|
||||
|
Loading…
Reference in New Issue
Block a user