Merge include/partition.h from GCC.
authorRichard Earnshaw <Richard.Earnshaw@arm.com>
Fri, 17 Apr 2015 15:10:43 +0000 (16:10 +0100)
committerRichard Earnshaw <Richard.Earnshaw@arm.com>
Fri, 17 Apr 2015 15:13:43 +0000 (16:13 +0100)
2015-03-19  Richard Biener  <rguenther@suse.de>

* partition.h (struct partition_elem): Re-order elements to
avoid padding.

include/ChangeLog
include/partition.h

index 9afcc62c73f02e9162a21d43c4071c1cd7c339fb..55bf46da00cd0bde73853747f062295964698798 100644 (file)
@@ -1,3 +1,11 @@
+2015-04-17  Richard Earnshaw  <rearnsha@arm.com>
+
+       Merge from gcc:
+       2015-03-19  Richard Biener  <rguenther@suse.de>
+
+               * partition.h (struct partition_elem): Re-order elements to
+               avoid padding.
+
 2015-04-14  H.J. Lu  <hongjiu.lu@intel.com>
 
        * bfdlink.h (bfd_link_info): Add compress_debug.
index 53d127eafc391a66ddf8266dfb17e4039281cc26..c39873b6016e0840fe32059d9fee4725103343f6 100644 (file)
@@ -1,5 +1,5 @@
 /* List implementation of a partition of consecutive integers.
-   Copyright (C) 2000-2015 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
    Contributed by CodeSourcery, LLC.
 
    This file is part of GCC.
@@ -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;