forked from OSchip/llvm-project
After Victor's latest commits I am seeing null
addresses in dbg.declare; ignore this for the moment to prevent things from breaking. llvm-svn: 95471
This commit is contained in:
parent
ce410662ce
commit
db2eb47835
|
@ -332,6 +332,8 @@ bool FastISel::SelectCall(User *I) {
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
Value *Address = DI->getAddress();
|
Value *Address = DI->getAddress();
|
||||||
|
if (!Address)
|
||||||
|
return true;
|
||||||
AllocaInst *AI = dyn_cast<AllocaInst>(Address);
|
AllocaInst *AI = dyn_cast<AllocaInst>(Address);
|
||||||
// Don't handle byval struct arguments or VLAs, for example.
|
// Don't handle byval struct arguments or VLAs, for example.
|
||||||
if (!AI) break;
|
if (!AI) break;
|
||||||
|
|
Loading…
Reference in New Issue