From: Nadav Rotem Date: Thu, 13 Sep 2012 16:27:32 +0000 (+0000) Subject: Fix an 80 char line limit. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=aa8405811ed9ad84e5afb70dac04ebfbae519316;p=oota-llvm.git Fix an 80 char line limit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163808 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/Inliner.cpp b/lib/Transforms/IPO/Inliner.cpp index 69a22fb1e60..a9263baa44b 100644 --- a/lib/Transforms/IPO/Inliner.cpp +++ b/lib/Transforms/IPO/Inliner.cpp @@ -210,7 +210,8 @@ unsigned Inliner::getInlineThreshold(CallSite CS) const { Function *Caller = CS.getCaller(); bool OptSize = Caller && !Caller->isDeclaration() && Caller->hasFnAttr(Attribute::OptimizeForSize); - if (!(InlineLimit.getNumOccurrences() > 0) && OptSize && OptSizeThreshold < thres) + if (!(InlineLimit.getNumOccurrences() > 0) && OptSize && + OptSizeThreshold < thres) thres = OptSizeThreshold; // Listen to the inlinehint attribute when it would increase the threshold.