From ee256944c571b4be88fc7a17b6f9578a09bfd274 Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Fri, 11 Dec 2015 00:58:32 +0000 Subject: [PATCH] Fix build after r255319. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255322 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCISelDAGToDAG.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/PowerPC/PPCISelDAGToDAG.cpp b/lib/Target/PowerPC/PPCISelDAGToDAG.cpp index 8bc41024250..4dfa1650c1a 100644 --- a/lib/Target/PowerPC/PPCISelDAGToDAG.cpp +++ b/lib/Target/PowerPC/PPCISelDAGToDAG.cpp @@ -4195,7 +4195,7 @@ void PPCDAGToDAGISel::PeepholePPC64() { // opportunity, unless a) it results in another fusion opportunity or // b) optimizing for size. if (PPCSubTarget->hasFusion() && - (!MF->getFunction()->optForSize() && !Base.hasOneUse()) + (!MF->getFunction()->optForSize() && !Base.hasOneUse())) continue; unsigned Flags = 0; -- 2.34.1