mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Generate an error message instead of asserting or segfaulting when we can't
handle indirect register inputs. rdar://13322011 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176367 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5d79bb8770
commit
7590022f40
@ -6168,6 +6168,7 @@ void SelectionDAGBuilder::visitInlineAsm(ImmutableCallSite CS) {
|
||||
Ctx.emitError(CS.getInstruction(), "inline asm not supported yet:"
|
||||
" don't know how to handle tied "
|
||||
"indirect register inputs");
|
||||
report_fatal_error("Cannot handle indirect register inputs!");
|
||||
}
|
||||
|
||||
RegsForValue MatchedRegs;
|
||||
|
14
test/CodeGen/ARM/indirect-reg-input.ll
Normal file
14
test/CodeGen/ARM/indirect-reg-input.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; RUN: llc < %s -march=arm -mcpu=cortex-a8 2>&1 | FileCheck %s
|
||||
|
||||
; Check for error message:
|
||||
; CHECK: error: inline asm not supported yet: don't know how to handle tied indirect register inputs
|
||||
|
||||
%struct.my_stack = type { %struct.myjmp_buf }
|
||||
%struct.myjmp_buf = type { [6 x i32] }
|
||||
|
||||
define void @switch_to_stack(%struct.my_stack* %stack) nounwind {
|
||||
entry:
|
||||
%regs = getelementptr inbounds %struct.my_stack* %stack, i32 0, i32 0
|
||||
tail call void asm "\0A", "=*r,*0"(%struct.myjmp_buf* %regs, %struct.myjmp_buf* %regs)
|
||||
ret void
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user