summaryrefslogtreecommitdiff
path: root/gcc/sbitmap.h
diff options
context:
space:
mode:
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-23 00:11:55 +0000
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-23 00:11:55 +0000
commit7ffb8e039b6ad0ca70279d7d387a423eccd26688 (patch)
tree80716b09a5f6c1d08784c4b1727ced48d103ed33 /gcc/sbitmap.h
parent2fcf418696253a0ea47afce9e3463107bb71b056 (diff)
downloadgcc-7ffb8e039b6ad0ca70279d7d387a423eccd26688.tar.gz
* sbitmap.h (sbitmap_ptr, const_sbitmap_ptr): Move from here...
* sbitmap.c: ...to here to internalize sbitmap element access. Do not include tm.h, rtl.h, flags.h, hard-reg-set.h, and obstack.h. Explain why basic-block.h is included. * function.h: Include tm.h for CUMULATIVE_ARGS. * Makefile.in: Update dependencies. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159749 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sbitmap.h')
-rw-r--r--gcc/sbitmap.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/sbitmap.h b/gcc/sbitmap.h
index dc6d6715499..2e2c6245b1c 100644
--- a/gcc/sbitmap.h
+++ b/gcc/sbitmap.h
@@ -44,9 +44,6 @@ struct simple_bitmap_def
SBITMAP_ELT_TYPE elms[1]; /* The elements. */
};
-typedef SBITMAP_ELT_TYPE *sbitmap_ptr;
-typedef const SBITMAP_ELT_TYPE *const_sbitmap_ptr;
-
/* Return the set size needed for N elements. */
#define SBITMAP_SET_SIZE(N) (((N) + SBITMAP_ELT_BITS - 1) / SBITMAP_ELT_BITS)
#define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))