[PATCH] D19640: Update opt-bisect code to avoid skipping AlwaysInliner

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Mon May 23 11:13:05 PDT 2016


MatzeB accepted this revision.
MatzeB added a comment.
This revision is now accepted and ready to land.

LGTM. Nitpick below.


================
Comment at: lib/Transforms/IPO/InlineAlways.cpp:48
@@ -47,1 +47,3 @@
 
+  // Main run interface method.  We override here to avoid calling skipSCC().
+  bool runOnSCC(CallGraphSCC &SCC) override { return inlineCalls(SCC); }
----------------
Use three slashes.


Repository:
  rL LLVM

http://reviews.llvm.org/D19640





More information about the llvm-commits mailing list