443179 Need new test for the lxvx and stxvx instructions on ISA 2.07 and
ISA 3.0 systems.
443180 The subnormal test and the ISA 3.0 test generate compiler warnings.
+443314 In the latest GIT version, Valgrind with "--trace-flags" crashes at
+ "al" register
To see details of a given bug, visit
https://bugs.kde.org/show_bug.cgi?id=XXXXXX
vassert(lo3bits < 8);
vassert(IS_VALID_PFX(pfx));
vassert(sz == 8 || sz == 4 || sz == 2 || sz == 1);
- return nameIReg( sz, lo3bits | (getRexB(pfx) << 3),
- toBool(sz==1 && !haveREX(pfx)) );
+ UInt regNo = lo3bits | (getRexB(pfx) << 3);
+ return nameIReg( sz, regNo,
+ toBool(sz==1 && !haveREX(pfx) && regNo >= 4 && regNo < 8));
}
static IRExpr* getIRegRexB ( Int sz, Prefix pfx, UInt lo3bits )