Handle void in XCoreTargetLowering::isLegalAddressingMode. Triggers in

test/CodeGen/Generic.

llvm-svn: 76162
This commit is contained in:
Eli Friedman 2009-07-17 07:16:38 +00:00
parent 7c72917709
commit 93d9c9f85f

View File

@ -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) {