diff options
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r-- | gcc/bitmap.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c index d7464d7..538c414 100644 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -2164,6 +2164,12 @@ debug (const bitmap_head *ptr) fprintf (stderr, "<nil>\n"); } +void +bitmap_head::dump () +{ + debug (this); +} + #if CHECKING_P namespace selftest { |