On 10/19/21 8:34 AM, Alex Bennée wrote:
../../tcg/optimize.c: In function ‘fold_addsub2’: ../../tcg/optimize.c:865:13: error: unknown type name ‘Int128’ 865 | Int128 a = int128_make128(al, ah); | ^~~~~~ ../../tcg/optimize.c:865:24: error: implicit declaration of function ‘int128_make128’ [-Werror=implicit-function-declaration] 865 | Int128 a = int128_make128(al, ah);possibly we are just missing: #include "qemu/int128.h"
Ah, this patch set predates a cleanup to tcg_ldst.h. Previously we included int128.h in tcg.h. Will fix. r~
