Better use initializer lists.

llvm-svn: 127716
This commit is contained in:
Cameron Zwarich 2011-03-16 00:13:37 +00:00
parent f09bb5f2f5
commit 88790f3d4d

View File

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