summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/lib/Target/ARM/Thumb2SizeReduction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp b/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
index 57b9abb6317..cac062c8742 100644
--- a/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
+++ b/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
@@ -1026,7 +1026,7 @@ bool Thumb2SizeReduce::ReduceMBB(MachineBasicBlock &MBB) {
bool Thumb2SizeReduce::runOnMachineFunction(MachineFunction &MF) {
if (skipFunction(*MF.getFunction()) ||
- PredicateFtor && !PredicateFtor(*MF.getFunction()))
+ (PredicateFtor && !PredicateFtor(*MF.getFunction())))
return false;
STI = &static_cast<const ARMSubtarget &>(MF.getSubtarget());
OpenPOWER on IntegriCloud