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:
Richard Biener 2015-03-19 11:44:08 +00:00 committed by Richard Biener
parent 397af03810
commit 4c5c36d495
2 changed files with 8 additions and 3 deletions

View File

@ -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>
PR target/65261

View File

@ -45,12 +45,12 @@ extern "C" {
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
circular list. */
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
canonical element for its class. */
unsigned class_count;