mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00

Split out host/bufferiszero.h.inc for x86, aarch64 and generic in order to avoid an overlong ifdef ladder. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
10 lines
203 B
C++
10 lines
203 B
C++
/*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* buffer_is_zero acceleration, generic version.
|
|
*/
|
|
|
|
static biz_accel_fn const accel_table[1] = {
|
|
buffer_is_zero_int_ge256
|
|
};
|
|
|
|
#define best_accel() 0
|