Add parentheses yet again to satisfy GCC's warnings.
authorChandler Carruth <chandlerc@gmail.com>
Sat, 10 Jul 2010 12:06:22 +0000 (12:06 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Sat, 10 Jul 2010 12:06:22 +0000 (12:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108043 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMBaseRegisterInfo.cpp

index b9a9ecaac803e77d9fc709153680adc00979df24..182bd99371457868c85750fcd3910cfeb078c165 100644 (file)
@@ -828,9 +828,9 @@ ARMBaseRegisterInfo::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
   // FIXME: We could add logic to be more precise about negative offsets
   //        and which instructions will need a scratch register for them. Is it
   //        worth the effort and added fragility?
-  bool BigStack = RS &&
-    (estimateStackSize(MF) + (hasFP(MF) ? 4:0) >= estimateRSStackSizeLimit(MF))
-    || MFI->hasVarSizedObjects();
+  bool BigStack =
+    (RS && (estimateStackSize(MF) + (hasFP(MF) ? 4:0) >=
+            estimateRSStackSizeLimit(MF))) || MFI->hasVarSizedObjects();
 
   bool ExtraCSSpill = false;
   if (BigStack || !CanEliminateFrame || cannotEliminateFrame(MF)) {