forked from OSchip/llvm-project
[MemLoc] Adjust memccpy support in MemoryLocation::getForArgument
Use LocationSize::upperBound instead of precise since we only know an upper bound on the number of bytes read/written. Reviewed By: fhahn Differential Revision: https://reviews.llvm.org/D89885
This commit is contained in:
parent
7a996027b9
commit
49cddb90f6
|
@ -257,10 +257,11 @@ MemoryLocation MemoryLocation::getForArgument(const CallBase *Call,
|
|||
case LibFunc_memccpy:
|
||||
assert((ArgIdx == 0 || ArgIdx == 1) &&
|
||||
"Invalid argument index for memccpy");
|
||||
// We only know an upper bound on the number of bytes read/written.
|
||||
if (const ConstantInt *LenCI =
|
||||
dyn_cast<ConstantInt>(Call->getArgOperand(3)))
|
||||
return MemoryLocation(Arg, LocationSize::precise(LenCI->getZExtValue()),
|
||||
AATags);
|
||||
return MemoryLocation(
|
||||
Arg, LocationSize::upperBound(LenCI->getZExtValue()), AATags);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue