Fix an 80 char line limit.
authorNadav Rotem <nrotem@apple.com>
Thu, 13 Sep 2012 16:27:32 +0000 (16:27 +0000)
committerNadav Rotem <nrotem@apple.com>
Thu, 13 Sep 2012 16:27:32 +0000 (16:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163808 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/Inliner.cpp

index 69a22fb1e6075c1b40dc4e68dc4ef876f16b699e..a9263baa44b282bd99e8a1159e9c5465173bbee7 100644 (file)
@@ -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.