From: Carl Love Date: Wed, 25 Oct 2023 15:20:30 +0000 (-0400) Subject: Change the vbit test specification for Iop_CmpGT64Ux2 X-Git-Tag: VALGRIND_3_22_0~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb162ac6c082f371da90fb3691f3185a53c2d56f;p=thirdparty%2Fvalgrind.git Change the vbit test specification for Iop_CmpGT64Ux2 The test should be specified as UNDEF_UNKNOWN not UNDEF_ALL_64x2. No architectures should be enaabled for the test. --- diff --git a/memcheck/tests/vbit-test/irops.c b/memcheck/tests/vbit-test/irops.c index a094709059..e94ea2432c 100644 --- a/memcheck/tests/vbit-test/irops.c +++ b/memcheck/tests/vbit-test/irops.c @@ -861,7 +861,7 @@ static irop_t irops[] = { { DEFOP(Iop_CmpGT8Ux16, UNDEF_UNKNOWN), }, { DEFOP(Iop_CmpGT16Ux8, UNDEF_UNKNOWN), }, { DEFOP(Iop_CmpGT32Ux4, UNDEF_UNKNOWN), }, - { DEFOP(Iop_CmpGT64Ux2, UNDEF_ALL_64x2), .ppc64 = 1, .ppc32 = 1 }, + { DEFOP(Iop_CmpGT64Ux2, UNDEF_UNKNOWN), }, { DEFOP(Iop_Cnt8x16, UNDEF_UNKNOWN), }, { DEFOP(Iop_Clz8x16, UNDEF_UNKNOWN), }, { DEFOP(Iop_Clz16x8, UNDEF_UNKNOWN), },