Make testb optimization work on big-endian targets.
authorDale Johannesen <dalej@apple.com>
Sat, 8 Nov 2008 00:01:16 +0000 (00:01 +0000)
committerDale Johannesen <dalej@apple.com>
Sat, 8 Nov 2008 00:01:16 +0000 (00:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58874 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/TargetLowering.cpp

index 0a8538ac7f140673aec4963760b72621c235e735..cf26166875b91dd3d15a41fbe31f8286acfe4f4a 100644 (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;
               }