xref: /aosp_15_r20/external/llvm/test/CodeGen/ARM/indirect-reg-input.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: not llc -mtriple=arm-eabi -mcpu=cortex-a8 %s -o - 2>&1 | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker
3*9880d681SAndroid Build Coastguard Worker; Check for error message:
4*9880d681SAndroid Build Coastguard Worker; CHECK: error: inline asm not supported yet: don't know how to handle tied indirect register inputs
5*9880d681SAndroid Build Coastguard Worker
6*9880d681SAndroid Build Coastguard Worker%struct.my_stack = type { %struct.myjmp_buf }
7*9880d681SAndroid Build Coastguard Worker%struct.myjmp_buf = type { [6 x i32] }
8*9880d681SAndroid Build Coastguard Worker
9*9880d681SAndroid Build Coastguard Workerdefine void @switch_to_stack(%struct.my_stack* %stack) nounwind {
10*9880d681SAndroid Build Coastguard Workerentry:
11*9880d681SAndroid Build Coastguard Worker  %regs = getelementptr inbounds %struct.my_stack, %struct.my_stack* %stack, i32 0, i32 0
12*9880d681SAndroid Build Coastguard Worker  tail call void asm "\0A", "=*r,*0"(%struct.myjmp_buf* %regs, %struct.myjmp_buf* %regs)
13*9880d681SAndroid Build Coastguard Worker  ret void
14*9880d681SAndroid Build Coastguard Worker}
15