diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-03-19 11:44:08 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-03-19 11:44:08 +0000 |
commit | 5b208a425d6e1b37cefc14a6446fc050b92eb325 (patch) | |
tree | abecd0dd2437e0eeedf190ba04e7080e51adacee /include | |
parent | c3c18155df7581762391accd63455a8f95fad83d (diff) | |
download | gcc-5b208a425d6e1b37cefc14a6446fc050b92eb325.tar.gz |
2015-03-19 Richard Biener <rguenther@suse.de>
* partition.h (struct partition_elem): Re-order elements to
avoid padding.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@221514 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/partition.h | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index bd072ae59b4..e9a51a7a30b 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -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 diff --git a/include/partition.h b/include/partition.h index d8b554f8f9a..c39873b6016 100644 --- a/include/partition.h +++ b/include/partition.h @@ -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; |