mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Fix thinko. Create parent scope if parent descriptor is *not* null.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62022 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5c3c5a4d9c
commit
0dc969e1ab
@ -2618,12 +2618,12 @@ private:
|
||||
if (!Slot) {
|
||||
// FIXME - breaks down when the context is an inlined function.
|
||||
DIDescriptor ParentDesc;
|
||||
DIBlock *DB = new DIBlock(V);
|
||||
DIDescriptor *DB = new DIBlock(V);
|
||||
if (DIBlock *Block = dyn_cast<DIBlock>(DB)) {
|
||||
ParentDesc = Block->getContext();
|
||||
}
|
||||
DbgScope *Parent = ParentDesc.isNull() ?
|
||||
getOrCreateScope(ParentDesc.getGV()) : NULL;
|
||||
NULL : getOrCreateScope(ParentDesc.getGV());
|
||||
Slot = new DbgScope(Parent, DB);
|
||||
if (Parent) {
|
||||
Parent->AddScope(Slot);
|
||||
|
Loading…
x
Reference in New Issue
Block a user