mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Handle void in XCoreTargetLowering::isLegalAddressingMode. Triggers in
test/CodeGen/Generic. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76162 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e91bf2c993
commit
ed224949ed
@ -1125,6 +1125,11 @@ static inline bool isImmUs4(int64_t val)
|
||||
bool
|
||||
XCoreTargetLowering::isLegalAddressingMode(const AddrMode &AM,
|
||||
const Type *Ty) const {
|
||||
// Be conservative with void
|
||||
// FIXME: Can we be more aggressive?
|
||||
if (Ty->getTypeID() == Type::VoidTyID)
|
||||
return false;
|
||||
|
||||
const TargetData *TD = TM.getTargetData();
|
||||
unsigned Size = TD->getTypeAllocSize(Ty);
|
||||
if (AM.BaseGV) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user