Make testb optimization work on big-endian targets.

llvm-svn: 58874
This commit is contained in:
Dale Johannesen 2008-11-08 00:01:16 +00:00
parent 015085fafa
commit bb5c9b4b68
1 changed files with 4 additions and 1 deletions

View File

@ -1370,7 +1370,10 @@ TargetLowering::SimplifySetCC(MVT VT, SDValue N0, SDValue N1,
uint64_t newMask = (1ULL << width) - 1;
for (unsigned offset=0; offset<origWidth/width; offset++) {
if ((newMask & Mask)==Mask) {
bestOffset = (uint64_t)offset * (width/8);
if (!TD->isLittleEndian())
bestOffset = (origWidth/width - offset - 1) * (width/8);
else
bestOffset = (uint64_t)offset * (width/8);
bestWidth = width;
break;
}