1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

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

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

llvm-svn: 91239
This commit is contained in:
Chandler Carruth 2009-12-13 07:04:45 +00:00
parent 5236d41ee7
commit f5a2d328af

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;