diff options
Diffstat (limited to 'include/llvm/Transforms/IPO')
-rw-r--r-- | include/llvm/Transforms/IPO/InlinerPass.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Transforms/IPO/InlinerPass.h b/include/llvm/Transforms/IPO/InlinerPass.h index a0a11a1..b370e96 100644 --- a/include/llvm/Transforms/IPO/InlinerPass.h +++ b/include/llvm/Transforms/IPO/InlinerPass.h @@ -20,7 +20,6 @@ #include "llvm/CallGraphSCCPass.h" #include "llvm/Transforms/Utils/InlineCost.h" #include "llvm/Target/TargetData.h" -#include <set> namespace llvm { @@ -48,7 +47,7 @@ struct Inliner : public CallGraphSCCPass { // InlineCallIfPossible bool InlineCallIfPossible(CallSite CS, CallGraph &CG, - const std::set<Function*> &SCCFunctions, + const SmallPtrSet<Function*, 8> &SCCFunctions, const TargetData &TD); /// This method returns the value specified by the -inline-threshold value, |