Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: gcc/gcc/ebitmap.h

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/dummy-checksum.c ('k') | gcc/gcc/errors.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/ebitmap.h
diff --git a/gcc/gcc/ebitmap.h b/gcc/gcc/ebitmap.h
index 1539c9ad03378586b920f660e8205803a66c02d7..b067ddb892a17131cb1bafe9ce9f4fc57d931ea7 100644
--- a/gcc/gcc/ebitmap.h
+++ b/gcc/gcc/ebitmap.h
@@ -26,7 +26,7 @@ along with GCC; see the file COPYING3. If not see
#define EBITMAP_ELT_TYPE unsigned HOST_WIDEST_FAST_INT
typedef struct ebitmap_def
-{
+{
unsigned int n_elts; /* number of elements in the array. */
sbitmap wordmask; /* wordmask saying which words are
nonzero. */
@@ -64,7 +64,6 @@ extern bool ebitmap_equal_p (ebitmap, ebitmap);
extern void ebitmap_clear (ebitmap);
extern int ebitmap_last_set_bit (ebitmap);
extern void debug_ebitmap (ebitmap);
-extern void dump_ebitmap (FILE *, ebitmap);
extern unsigned long ebitmap_popcount(ebitmap, unsigned long);
/* The iterator for ebitmap. */
@@ -87,11 +86,11 @@ typedef struct {
/* The word mask iterator. */
sbitmap_iterator maskiter;
} ebitmap_iterator;
-
+
static inline void
ebitmap_iter_init (ebitmap_iterator *i, ebitmap bmp, unsigned int min)
{
- sbitmap_iter_init (&i->maskiter, bmp->wordmask,
+ sbitmap_iter_init (&i->maskiter, bmp->wordmask,
min / EBITMAP_ELT_BITS);
i->size = bmp->numwords;
if (i->size == 0)
« no previous file with comments | « gcc/gcc/dummy-checksum.c ('k') | gcc/gcc/errors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698