[llvm-commits] [llvm] r163808 - /llvm/trunk/lib/Transforms/IPO/Inliner.cpp

Nadav Rotem nrotem at apple.com
Thu Sep 13 09:27:32 PDT 2012


Author: nadav
Date: Thu Sep 13 11:27:32 2012
New Revision: 163808

URL: http://llvm.org/viewvc/llvm-project?rev=163808&view=rev
Log:
Fix an 80 char line limit.

Modified:
    llvm/trunk/lib/Transforms/IPO/Inliner.cpp

Modified: llvm/trunk/lib/Transforms/IPO/Inliner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/IPO/Inliner.cpp?rev=163808&r1=163807&r2=163808&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/IPO/Inliner.cpp (original)
+++ llvm/trunk/lib/Transforms/IPO/Inliner.cpp Thu Sep 13 11:27:32 2012
@@ -210,7 +210,8 @@
   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.





More information about the llvm-commits mailing list