diff options
author | Bernhard Fischer <aldot@gcc.gnu.org> | 2007-12-05 13:47:22 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2007-12-05 13:47:22 +0100 |
commit | 59b130b365bbb85a040ee7e1de221cf4aedb691a (patch) | |
tree | cca3b8ebebe3e0e46373e49147b78e2a9edb91c6 /gcc/sparseset.h | |
parent | 240b189a32666cab3dbf530c04c6b1cacb2baedd (diff) | |
download | gcc-59b130b365bbb85a040ee7e1de221cf4aedb691a.tar.gz |
sparseset.c: Include config.h and system.h before sparseset.h.
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
Diffstat (limited to 'gcc/sparseset.h')
-rw-r--r-- | gcc/sparseset.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/sparseset.h b/gcc/sparseset.h index 96ee19acdd7..3554ef6b35c 100644 --- a/gcc/sparseset.h +++ b/gcc/sparseset.h @@ -21,7 +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) @@ -32,7 +31,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. */ |