summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaud A. de Grandmaison <arnaud.degrandmaison@arm.com>2015-03-01 21:22:50 +0000
committerArnaud A. de Grandmaison <arnaud.degrandmaison@arm.com>2015-03-01 21:22:50 +0000
commita57ca81eb43ca8334cbd17b6d0c2539e064fdb34 (patch)
tree62822899c625d509443ec0214467941a78c6ae6a
parent030133c5db1844ced6a2e3dc90c11cceab625e23 (diff)
downloadbcm5719-llvm-a57ca81eb43ca8334cbd17b6d0c2539e064fdb34.tar.gz
bcm5719-llvm-a57ca81eb43ca8334cbd17b6d0c2539e064fdb34.zip
[PBQP] Address post-commit style comment for r230904. NFC.
Thanks David ! llvm-svn: 230908
-rw-r--r--llvm/lib/CodeGen/RegAllocPBQP.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/RegAllocPBQP.cpp b/llvm/lib/CodeGen/RegAllocPBQP.cpp
index f72204f17cc..54b67abd7df 100644
--- a/llvm/lib/CodeGen/RegAllocPBQP.cpp
+++ b/llvm/lib/CodeGen/RegAllocPBQP.cpp
@@ -193,8 +193,8 @@ private:
if (NRegs < MRegs)
return D.count(IKey(NRegs, MRegs)) > 0;
- else
- return D.count(IKey(MRegs, NRegs)) > 0;
+
+ return D.count(IKey(MRegs, NRegs)) > 0;
}
void setDisjointAllowedRegs(const PBQPRAGraph &G, PBQPRAGraph::NodeId NId,
OpenPOWER on IntegriCloud