Add missing space.

llvm-svn: 141750
This commit is contained in:
Nick Lewycky 2011-10-12 00:14:31 +00:00
parent 064c1c0e77
commit c585de670f
1 changed files with 1 additions and 1 deletions

View File

@ -860,7 +860,7 @@ bool MemCpyOpt::processByValArgument(CallSite CS, unsigned ArgNo) {
// Find out what feeds this byval argument.
Value *ByValArg = CS.getArgument(ArgNo);
Type *ByValTy =cast<PointerType>(ByValArg->getType())->getElementType();
Type *ByValTy = cast<PointerType>(ByValArg->getType())->getElementType();
uint64_t ByValSize = TD->getTypeAllocSize(ByValTy);
MemDepResult DepInfo =
MD->getPointerDependencyFrom(AliasAnalysis::Location(ByValArg, ByValSize),