comparison gcc/ebitmap.c @ 67:f6334be47118

update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Mar 2011 17:18:12 +0900
parents b7f97abdc517
children
comparison
equal deleted inserted replaced
65:65488c3d617d 67:f6334be47118
19 <http://www.gnu.org/licenses/>. */ 19 <http://www.gnu.org/licenses/>. */
20 20
21 #include "config.h" 21 #include "config.h"
22 #include "system.h" 22 #include "system.h"
23 #include "coretypes.h" 23 #include "coretypes.h"
24 #include "tm.h"
25 #include "rtl.h"
26 #include "flags.h"
27 #include "obstack.h"
28 #include "ebitmap.h" 24 #include "ebitmap.h"
29 25
30 /* The ebitmap data structure is a sparse bitmap structure that works 26 /* The ebitmap data structure is a sparse bitmap structure that works
31 by having two pieces: 27 by having two pieces:
32 1. An array of all nonzero words in the structures, organized as 28 1. An array of all nonzero words in the structures, organized as
408 fprintf (file, "}\n"); 404 fprintf (file, "}\n");
409 } 405 }
410 406
411 /* Dump ebitmap BMAP to stderr. */ 407 /* Dump ebitmap BMAP to stderr. */
412 408
413 void 409 DEBUG_FUNCTION void
414 debug_ebitmap (ebitmap bmap) 410 debug_ebitmap (ebitmap bmap)
415 { 411 {
416 dump_ebitmap (stderr, bmap); 412 dump_ebitmap (stderr, bmap);
417 } 413 }
418 414