OSDN Git Service

2012-02-14 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / sparseset.h
index 96ee19a..c177d2d 100644 (file)
@@ -1,5 +1,5 @@
 /* SparseSet implementation.
-   Copyright (C) 2007 Free Software Foundation, Inc.
+   Copyright (C) 2007, 2010 Free Software Foundation, Inc.
    Contributed by Peter Bergner <bergner@vnet.ibm.com>
 
 This file is part of GCC.
@@ -21,9 +21,6 @@ along with GCC; see the file COPYING3.  If not see
 #ifndef GCC_SPARSESET_H
 #define GCC_SPARSESET_H
 
-#include "system.h"
-#include <assert.h>
-
 #define SPARSESET_ELT_BITS ((unsigned) HOST_BITS_PER_WIDEST_FAST_INT)
 #define SPARSESET_ELT_TYPE unsigned int
 
@@ -32,7 +29,7 @@ along with GCC; see the file COPYING3.  If not see
 typedef struct sparseset_def
 {
   SPARSESET_ELT_TYPE *dense;   /* Dense array.  */
-  SPARSESET_ELT_TYPE *sparse;  /* Sparse array.  */
+  SPARSESET_ELT_TYPE *sparse;  /* Sparse array.  */
   SPARSESET_ELT_TYPE members;  /* Number of elements.  */
   SPARSESET_ELT_TYPE size;     /* Maximum number of elements.  */
   SPARSESET_ELT_TYPE iter;     /* Iterator index.  */