diff options
author | Ladi Prosek <lprosek@redhat.com> | 2016-06-13 16:20:48 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2016-09-15 15:32:22 +0300 |
commit | d4b84d564ee3eb7a58e4585d671fb3c220b6c3b9 (patch) | |
tree | 0b9d6a1f54c29b417ad1eaf4fb3a5ab5af0eee16 /include/qemu/bitmap.h | |
parent | d7d26226b839a2ad5fc356ce8f8d4db901cb29de (diff) | |
download | qemu-d4b84d564ee3eb7a58e4585d671fb3c220b6c3b9.zip qemu-d4b84d564ee3eb7a58e4585d671fb3c220b6c3b9.tar.gz qemu-d4b84d564ee3eb7a58e4585d671fb3c220b6c3b9.tar.bz2 |
Remove unused function declarations
Unused function declarations were found using a simple gcc plugin and
manually verified by grepping the sources.
Signed-off-by: Ladi Prosek <lprosek@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'include/qemu/bitmap.h')
-rw-r--r-- | include/qemu/bitmap.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/qemu/bitmap.h b/include/qemu/bitmap.h index ec5146f..7247f14 100644 --- a/include/qemu/bitmap.h +++ b/include/qemu/bitmap.h @@ -75,10 +75,6 @@ int slow_bitmap_equal(const unsigned long *bitmap1, const unsigned long *bitmap2, long bits); void slow_bitmap_complement(unsigned long *dst, const unsigned long *src, long bits); -void slow_bitmap_shift_right(unsigned long *dst, - const unsigned long *src, int shift, long bits); -void slow_bitmap_shift_left(unsigned long *dst, - const unsigned long *src, int shift, long bits); int slow_bitmap_and(unsigned long *dst, const unsigned long *bitmap1, const unsigned long *bitmap2, long bits); void slow_bitmap_or(unsigned long *dst, const unsigned long *bitmap1, |