mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
Get GEP's working with packed types. Contributed by Morten Ofstad!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18404 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d92017a924
commit
f0228053f8
@ -151,6 +151,9 @@ bool Type::isSizedDerivedType() const {
|
||||
if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
|
||||
return ATy->getElementType()->isSized();
|
||||
|
||||
if (const PackedType *PTy = dyn_cast<PackedType>(this))
|
||||
return PTy->getElementType()->isSized();
|
||||
|
||||
if (!isa<StructType>(this)) return false;
|
||||
|
||||
// Okay, our struct is sized if all of the elements are...
|
||||
|
Loading…
Reference in New Issue
Block a user