mirror of git://gcc.gnu.org/git/gcc.git
partition.h (struct partition_elem): Re-order elements to avoid padding.
2015-03-19 Richard Biener <rguenther@suse.de> * partition.h (struct partition_elem): Re-order elements to avoid padding. From-SVN: r221514
This commit is contained in:
parent
397af03810
commit
4c5c36d495
|
@ -1,3 +1,8 @@
|
||||||
|
2015-03-19 Richard Biener <rguenther@suse.de>
|
||||||
|
|
||||||
|
* partition.h (struct partition_elem): Re-order elements to
|
||||||
|
avoid padding.
|
||||||
|
|
||||||
2015-03-02 Markus Trippelsdorf <markus@trippelsdorf.de>
|
2015-03-02 Markus Trippelsdorf <markus@trippelsdorf.de>
|
||||||
|
|
||||||
PR target/65261
|
PR target/65261
|
||||||
|
|
|
@ -45,12 +45,12 @@ extern "C" {
|
||||||
|
|
||||||
struct partition_elem
|
struct partition_elem
|
||||||
{
|
{
|
||||||
/* The canonical element that represents the class containing this
|
|
||||||
element. */
|
|
||||||
int class_element;
|
|
||||||
/* The next element in this class. Elements in each class form a
|
/* The next element in this class. Elements in each class form a
|
||||||
circular list. */
|
circular list. */
|
||||||
struct partition_elem* next;
|
struct partition_elem* next;
|
||||||
|
/* The canonical element that represents the class containing this
|
||||||
|
element. */
|
||||||
|
int class_element;
|
||||||
/* The number of elements in this class. Valid only if this is the
|
/* The number of elements in this class. Valid only if this is the
|
||||||
canonical element for its class. */
|
canonical element for its class. */
|
||||||
unsigned class_count;
|
unsigned class_count;
|
||||||
|
|
Loading…
Reference in New Issue