Merge two lines

llvm-svn: 213415
This commit is contained in:
Alexey Samsonov 2014-07-18 21:29:55 +00:00
parent f3764da8ec
commit ad2e0352f0
1 changed files with 1 additions and 2 deletions

View File

@ -907,8 +907,7 @@ CodeGenFunction::EmitAutoVarAlloca(const VarDecl &D) {
if (isByRef)
LTy = BuildByRefType(&D);
llvm::AllocaInst *Alloc = CreateTempAlloca(LTy);
Alloc->setName(D.getName());
llvm::AllocaInst *Alloc = CreateTempAlloca(LTy, D.getName());
CharUnits allocaAlignment = alignment;
if (isByRef)