aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-11-19 15:30:20 +0000
committerDan Gohman <gohman@apple.com>2007-11-19 15:30:20 +0000
commitadf3eab7735741926c67e6fc12b952500c45a9ba (patch)
treeb1208a03d570ac65caa07e63818e89b8a3bc2daa /lib
parent089617d9e3acc242151a007e7a051ed2fb200b1f (diff)
Add explicit keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44234 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Bitcode/Reader/BitcodeReader.cpp2
-rw-r--r--lib/Bitcode/Writer/BitcodeWriterPass.cpp3
-rw-r--r--lib/Transforms/Scalar/CorrelatedExprs.cpp8
3 files changed, 7 insertions, 6 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp
index 0bacf0fe70..aa78e7c4dc 100644
--- a/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/lib/Bitcode/Reader/BitcodeReader.cpp
@@ -123,7 +123,7 @@ namespace {
void operator=(const ConstantPlaceHolder &); // DO NOT IMPLEMENT
public:
Use Op;
- ConstantPlaceHolder(const Type *Ty)
+ explicit ConstantPlaceHolder(const Type *Ty)
: ConstantExpr(Ty, Instruction::UserOp1, &Op, 1),
Op(UndefValue::get(Type::Int32Ty), this) {
}
diff --git a/lib/Bitcode/Writer/BitcodeWriterPass.cpp b/lib/Bitcode/Writer/BitcodeWriterPass.cpp
index 8de7ffb2db..57512045e0 100644
--- a/lib/Bitcode/Writer/BitcodeWriterPass.cpp
+++ b/lib/Bitcode/Writer/BitcodeWriterPass.cpp
@@ -20,7 +20,8 @@ namespace {
std::ostream &Out; // ostream to print on
public:
static char ID; // Pass identifcation, replacement for typeid
- WriteBitcodePass(std::ostream &o) : ModulePass((intptr_t) &ID), Out(o) {}
+ explicit WriteBitcodePass(std::ostream &o)
+ : ModulePass((intptr_t) &ID), Out(o) {}
const char *getPassName() const { return "Bitcode Writer"; }
diff --git a/lib/Transforms/Scalar/CorrelatedExprs.cpp b/lib/Transforms/Scalar/CorrelatedExprs.cpp
index 6933fab3cf..42c4055ae6 100644
--- a/lib/Transforms/Scalar/CorrelatedExprs.cpp
+++ b/lib/Transforms/Scalar/CorrelatedExprs.cpp
@@ -57,7 +57,7 @@ namespace {
Value *Val; // Relation to what value?
unsigned Rel; // SetCC or ICmp relation, or Add if no information
public:
- Relation(Value *V) : Val(V), Rel(Instruction::Add) {}
+ explicit Relation(Value *V) : Val(V), Rel(Instruction::Add) {}
bool operator<(const Relation &R) const { return Val < R.Val; }
Value *getValue() const { return Val; }
unsigned getRelation() const { return Rel; }
@@ -112,7 +112,7 @@ namespace {
//
Value *Replacement;
public:
- ValueInfo(const Type *Ty)
+ explicit ValueInfo(const Type *Ty)
: Bounds(Ty->isInteger() ? cast<IntegerType>(Ty)->getBitWidth() : 32),
Replacement(0) {}
@@ -146,7 +146,7 @@ namespace {
return *I;
// Insert and return the new relationship...
- return *Relationships.insert(I, V);
+ return *Relationships.insert(I, Relation(V));
}
const Relation *requestRelation(Value *V) const {
@@ -176,7 +176,7 @@ namespace {
typedef std::map<Value*, ValueInfo> ValueMapTy;
ValueMapTy ValueMap;
public:
- RegionInfo(BasicBlock *bb) : BB(bb) {}
+ explicit RegionInfo(BasicBlock *bb) : BB(bb) {}
// getEntryBlock - Return the block that dominates all of the members of
// this region.