[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / test / CodeGen / ARM / indirect-reg-input.ll
blob90dd4a9040b06eb12b94142b449c0b2b033dd01d
1 ; RUN: not llc -mtriple=arm-eabi -mcpu=cortex-a8 %s -o - 2>&1 | FileCheck %s
3 ; Check for error message:
4 ; CHECK: error: inline asm not supported yet: don't know how to handle tied indirect register inputs
6 %struct.my_stack = type { %struct.myjmp_buf }
7 %struct.myjmp_buf = type { [6 x i32] }
9 define void @switch_to_stack(ptr %stack) nounwind {
10 entry:
11   tail call void asm "\0A", "=*r,*0"(ptr elementtype(%struct.myjmp_buf) %stack, ptr elementtype(%struct.myjmp_buf) %stack)
12   ret void