Better use initializer lists.

llvm-svn: 127716
This commit is contained in:
Cameron Zwarich 2011-03-16 00:13:37 +00:00
parent 63062ccf85
commit b51c830f7c
1 changed files with 2 additions and 5 deletions

View File

@ -240,11 +240,8 @@ class ConvertToScalarInfo {
public: public:
explicit ConvertToScalarInfo(unsigned Size, const TargetData &td) explicit ConvertToScalarInfo(unsigned Size, const TargetData &td)
: AllocaSize(Size), TD(td) { : AllocaSize(Size), TD(td), IsNotTrivial(false), VectorTy(0),
IsNotTrivial = false; HadAVector(false) { }
VectorTy = 0;
HadAVector = false;
}
AllocaInst *TryConvert(AllocaInst *AI); AllocaInst *TryConvert(AllocaInst *AI);