From: Richard Henderson Date: Thu, 26 Dec 2024 06:56:31 +0000 (-0800) Subject: tcg/aarch64: Provide TCG_TARGET_{s}extract_valid X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=42ace08607669007e47d7e73aaaeb74948b0c5f2;p=qemu.git tcg/aarch64: Provide TCG_TARGET_{s}extract_valid Trivially mirrors TCG_TARGET_HAS_{s}extract_*. Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/tcg/aarch64/tcg-target-has.h b/tcg/aarch64/tcg-target-has.h index 0e79e01266..26ce65b6a5 100644 --- a/tcg/aarch64/tcg-target-has.h +++ b/tcg/aarch64/tcg-target-has.h @@ -116,4 +116,7 @@ #define TCG_TARGET_HAS_cmpsel_vec 0 #define TCG_TARGET_HAS_tst_vec 1 +#define TCG_TARGET_extract_valid(type, ofs, len) 1 +#define TCG_TARGET_sextract_valid(type, ofs, len) 1 + #endif