mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-09 13:33:17 +00:00
getUnderlyingObject can return null, handle this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46318 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cadf873c83
commit
d087480166
@ -245,8 +245,9 @@ BasicAliasAnalysis::getModRefInfo(CallSite CS, Value *P, unsigned Size) {
|
||||
if (!isa<Constant>(P)) {
|
||||
const Value *Object = getUnderlyingObject(P);
|
||||
// Allocations and byval arguments are "new" objects.
|
||||
if (isa<AllocationInst>(Object) ||
|
||||
(isa<Argument>(Object) && cast<Argument>(Object)->hasByValAttr())) {
|
||||
if (Object &&
|
||||
(isa<AllocationInst>(Object) ||
|
||||
(isa<Argument>(Object) && cast<Argument>(Object)->hasByValAttr()))) {
|
||||
// Okay, the pointer is to a stack allocated object. If we can prove that
|
||||
// the pointer never "escapes", then we know the call cannot clobber it,
|
||||
// because it simply can't get its address.
|
||||
|
Loading…
x
Reference in New Issue
Block a user