mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Teach ARM isLegalAddressingMode to handle unknown type without crashing. This fixes pr2589.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54004 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
922b3d2e67
commit
d1b3da621b
@ -1598,7 +1598,7 @@ static bool isLegalAddressImmediate(int64_t V, MVT VT,
|
||||
/// by AM is legal for this target, for a load/store of the specified type.
|
||||
bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM,
|
||||
const Type *Ty) const {
|
||||
if (!isLegalAddressImmediate(AM.BaseOffs, getValueType(Ty), Subtarget))
|
||||
if (!isLegalAddressImmediate(AM.BaseOffs, getValueType(Ty, true), Subtarget))
|
||||
return false;
|
||||
|
||||
// Can never fold addr of global into load/store.
|
||||
|
9
test/CodeGen/ARM/2008-07-24-CodeGenPrepCrash.ll
Normal file
9
test/CodeGen/ARM/2008-07-24-CodeGenPrepCrash.ll
Normal file
@ -0,0 +1,9 @@
|
||||
; RUN: llvm-as < %s | llc -march=arm
|
||||
; PR2589
|
||||
|
||||
define void @main({ i32 }*) {
|
||||
entry:
|
||||
%sret1 = alloca { i32 } ; <{ i32 }*> [#uses=1]
|
||||
load { i32 }* %sret1 ; <{ i32 }>:1 [#uses=0]
|
||||
ret void
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user