Fix whitespace.
authorJay Foad <jay.foad@amd.com>
Mon, 16 Dec 2019 10:41:38 +0000 (10:41 +0000)
committerJay Foad <jay.foad@amd.com>
Mon, 16 Dec 2019 10:42:34 +0000 (10:42 +0000)
llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp

index 8a7b4be..a0edc8f 100644 (file)
@@ -4458,9 +4458,9 @@ void AMDGPUTargetLowering::computeKnownBitsForTargetNode(
       bool RHSNonNegative = RHSKnown.isNonNegative();
       bool RHSPositive = RHSKnown.isStrictlyPositive();
 
-      if((LHSNonNegative && RHSNonNegative) || (LHSNegative && RHSNegative))
+      if ((LHSNonNegative && RHSNonNegative) || (LHSNegative && RHSNegative))
         Known.Zero.setHighBits(32 - MaxValBits);
-      else if((LHSNegative && RHSPositive) || (LHSPositive && RHSNegative))
+      else if ((LHSNegative && RHSPositive) || (LHSPositive && RHSNegative))
         Known.One.setHighBits(32 - MaxValBits);
     } else {
       unsigned LHSValBits = 24 - LHSKnown.countMinLeadingZeros();