diff options
Diffstat (limited to 'lib/Transforms/IPO/ExtractFunction.cpp')
-rw-r--r-- | lib/Transforms/IPO/ExtractFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/IPO/ExtractFunction.cpp b/lib/Transforms/IPO/ExtractFunction.cpp index 8d6af4176e..ed22465f89 100644 --- a/lib/Transforms/IPO/ExtractFunction.cpp +++ b/lib/Transforms/IPO/ExtractFunction.cpp @@ -31,8 +31,8 @@ namespace { /// specified function. Otherwise, it deletes as much of the module as /// possible, except for the function specified. /// - FunctionExtractorPass(Function *F = 0, bool deleteFn = true, - bool relinkCallees = false) + explicit FunctionExtractorPass(Function *F = 0, bool deleteFn = true, + bool relinkCallees = false) : ModulePass((intptr_t)&ID), Named(F), deleteFunc(deleteFn), reLink(relinkCallees) {} |