mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 22:20:37 +00:00
Fix List-of-List Processing
Fix VarListElementInit::resolveListElementReference to return a partially resolved VarListElementInint in the case where full resolution is not possible. This allows TableGen to make forward progress resolving certain complex list expressions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141315 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2f0722c105
commit
d2b9f20b18
@ -1456,7 +1456,9 @@ Init *VarListElementInit:: resolveListElementReference(Record &R,
|
||||
if (Result) {
|
||||
TypedInit *TInit = dynamic_cast<TypedInit *>(Result);
|
||||
if (TInit) {
|
||||
return TInit->resolveListElementReference(R, RV, Elt);
|
||||
Init *Result2 = TInit->resolveListElementReference(R, RV, Elt);
|
||||
if (Result2) return Result2;
|
||||
return new VarListElementInit(TInit, Elt);
|
||||
}
|
||||
return Result;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user