mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Handle void in XCoreTargetLowering::isLegalAddressingMode. Triggers in
test/CodeGen/Generic. llvm-svn: 76162
This commit is contained in:
parent
7c72917709
commit
93d9c9f85f
@ -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