diff options
author | Dan Gohman <gohman@apple.com> | 2009-02-18 16:37:45 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-02-18 16:37:45 +0000 |
commit | edd345ce4a1840451fc1b891bc1df0bb226dfb4f (patch) | |
tree | 572289f6ed7b7d2bb931e5edd9816d2e723fc787 /lib/Transforms/IPO | |
parent | 7b1a847006d1bae5bfc8e44a2e352a0a3d302e00 (diff) | |
download | external_llvm-edd345ce4a1840451fc1b891bc1df0bb226dfb4f.zip external_llvm-edd345ce4a1840451fc1b891bc1df0bb226dfb4f.tar.gz external_llvm-edd345ce4a1840451fc1b891bc1df0bb226dfb4f.tar.bz2 |
Add explicit keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64915 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO')
-rw-r--r-- | lib/Transforms/IPO/ArgumentPromotion.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/IPO/ArgumentPromotion.cpp b/lib/Transforms/IPO/ArgumentPromotion.cpp index 183e1a1..b562c42 100644 --- a/lib/Transforms/IPO/ArgumentPromotion.cpp +++ b/lib/Transforms/IPO/ArgumentPromotion.cpp @@ -66,8 +66,8 @@ namespace { virtual bool runOnSCC(const std::vector<CallGraphNode *> &SCC); static char ID; // Pass identification, replacement for typeid - ArgPromotion(unsigned maxElements = 3) : CallGraphSCCPass(&ID), - maxElements(maxElements) {} + explicit ArgPromotion(unsigned maxElements = 3) + : CallGraphSCCPass(&ID), maxElements(maxElements) {} /// A vector used to hold the indices of a single GEP instruction typedef std::vector<uint64_t> IndicesVector; |