Don't leave pointers uninitialized in the default constructor. GCC complains

about the potential use of these uninitialized members under certain conditions.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91239 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth 2009-12-13 07:04:45 +00:00
parent 60283f9bc9
commit 0daf77e803

View File

@ -102,7 +102,7 @@ namespace {
public:
typedef std::vector<Value *> ValVector;
RenamePassData() {}
RenamePassData() : BB(NULL), Pred(NULL), Values() {}
RenamePassData(BasicBlock *B, BasicBlock *P,
const ValVector &V) : BB(B), Pred(P), Values(V) {}
BasicBlock *BB;