diff include/partition.h @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents a06113de4d67
children 84e7813d76e9
line wrap: on
line diff
--- a/include/partition.h	Sun Aug 21 07:07:55 2011 +0900
+++ b/include/partition.h	Fri Oct 27 22:46:09 2017 +0900
@@ -1,5 +1,5 @@
 /* List implementation of a partition of consecutive integers.
-   Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright (C) 2000-2017 Free Software Foundation, Inc.
    Contributed by CodeSourcery, LLC.
 
    This file is part of GCC.
@@ -45,12 +45,12 @@
 
 struct partition_elem
 {
+  /* 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 next element in this class.  Elements in each class form a
-     circular list.  */
-  struct partition_elem* next;
   /* The number of elements in this class.  Valid only if this is the
      canonical element for its class.  */
   unsigned class_count;