diff options
author | YamaArashi <shadow962@live.com> | 2016-02-13 14:04:10 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-13 14:04:10 -0800 |
commit | 47d5ab74c312567d17cd5df362d73d36f53eb0c2 (patch) | |
tree | 8d5fab1cade86a10154b874da6786121e35caa8d /gcc/bitmap.c | |
parent | 87926b4bcc3046ac85fabda09178e9bf50dd8381 (diff) |
rely on configure less
Diffstat (limited to 'gcc/bitmap.c')
-rwxr-xr-x | gcc/bitmap.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c index a5aa2e7..1ca00b0 100755 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -559,23 +559,13 @@ bitmap_debug_file (file, head) { bitmap_element *ptr; - fprintf (file, "\nfirst = "); - fprintf (file, HOST_PTR_PRINTF, head->first); - fprintf (file, " current = "); - fprintf (file, HOST_PTR_PRINTF, head->current); - fprintf (file, " indx = %u\n", head->indx); + fprintf (file, "\nfirst = %p current = %p indx = %u\n", head->first, head->current, head->indx); for (ptr = head->first; ptr; ptr = ptr->next) { int i, j, col = 26; - fprintf (file, "\t"); - fprintf (file, HOST_PTR_PRINTF, ptr); - fprintf (file, " next = "); - fprintf (file, HOST_PTR_PRINTF, ptr->next); - fprintf (file, " prev = "); - fprintf (file, HOST_PTR_PRINTF, ptr->prev); - fprintf (file, " indx = %u\n\t\tbits = {", ptr->indx); + fprintf (file, "\t%p next = %p prev = %p indx = %u\n\t\tbits = {", ptr, ptr->next, ptr->prev, ptr->indx); for (i = 0; i < BITMAP_ELEMENT_WORDS; i++) for (j = 0; j < HOST_BITS_PER_WIDE_INT; j++) |