bolt/deps/llvm-18.1.8/llvm/test/CodeGen/ARM/indirect-reg-input.ll

14 lines
488 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: not llc -mtriple=arm-eabi -mcpu=cortex-a8 %s -o - 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(ptr %stack) nounwind {
entry:
tail call void asm "\0A", "=*r,*0"(ptr elementtype(%struct.myjmp_buf) %stack, ptr elementtype(%struct.myjmp_buf) %stack)
ret void
}