diff options
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r-- | gcc/bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c index e22a524ce17..21378b5c677 100644 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -706,7 +706,7 @@ bitmap_equal_p (a, b) bitmap_head c; int ret; - c.first = c.current = 0; + memset (&c, 0, sizeof (c)); ret = ! bitmap_operation (&c, a, b, BITMAP_XOR); bitmap_clear (&c); |