aboutsummaryrefslogtreecommitdiff
path: root/include/partition.h
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2015-03-19 11:44:08 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2015-03-19 11:44:08 +0000
commit4c5c36d495fc500eb69e19db0487c78a3127f3d8 (patch)
treeabecd0dd2437e0eeedf190ba04e7080e51adacee /include/partition.h
parent397af03810df0a9a34ba7073eee5612b7ea599c9 (diff)
downloadgcc-4c5c36d495fc500eb69e19db0487c78a3127f3d8.zip
gcc-4c5c36d495fc500eb69e19db0487c78a3127f3d8.tar.gz
gcc-4c5c36d495fc500eb69e19db0487c78a3127f3d8.tar.bz2
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
Diffstat (limited to 'include/partition.h')
-rw-r--r--include/partition.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/partition.h b/include/partition.h
index d8b554f..c39873b 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;