diff options
Diffstat (limited to 'gcc/sbitmap.c')
-rw-r--r-- | gcc/sbitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sbitmap.c b/gcc/sbitmap.c index e3f9a9fd74d..e03cd0442c3 100644 --- a/gcc/sbitmap.c +++ b/gcc/sbitmap.c @@ -106,7 +106,7 @@ void sbitmap_zero (bmap) sbitmap bmap; { - bzero ((PTR) bmap->elms, bmap->bytes); + memset ((PTR) bmap->elms, 0, bmap->bytes); } /* Set all elements in a bitmap to ones. */ |