2007-11-27 Bernhard Fischer <aldot@gcc.gnu.org>
* sparseset.c: Include config.h and system.h before sparseset.h.
* sparseset.h: Remove inclusion of system.h.
From-SVN: r130622
+2007-11-27 Bernhard Fischer <aldot@gcc.gnu.org>
+
+ * sparseset.c: Include config.h and system.h before sparseset.h.
+ * sparseset.h: Remove inclusion of system.h.
+
2007-12-05 Jakub Jelinek <jakub@redhat.com>
Richard Sandiford <rsandifo@nildram.co.uk>
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
-#include "libiberty.h"
+#include "config.h"
+#include "system.h"
#include "sparseset.h"
-
/* Allocate and clear a n_elms SparseSet. */
sparseset
#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)
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. */