~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/CodeGen/ARM/indirect-reg-input.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2015-07-15 17:51:08 UTC
  • Revision ID: package-import@ubuntu.com-20150715175108-l8mynwovkx4zx697
Tags: upstream-3.7~+rc2
ImportĀ upstreamĀ versionĀ 3.7~+rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; RUN: not llc -mtriple=arm-eabi -mcpu=cortex-a8 %s -o - 2>&1 | FileCheck %s
 
2
 
 
3
; Check for error message:
 
4
; CHECK: error: inline asm not supported yet: don't know how to handle tied indirect register inputs
 
5
 
 
6
%struct.my_stack = type { %struct.myjmp_buf }
 
7
%struct.myjmp_buf = type { [6 x i32] }
 
8
 
 
9
define void @switch_to_stack(%struct.my_stack* %stack) nounwind {
 
10
entry:
 
11
  %regs = getelementptr inbounds %struct.my_stack, %struct.my_stack* %stack, i32 0, i32 0
 
12
  tail call void asm "\0A", "=*r,*0"(%struct.myjmp_buf* %regs, %struct.myjmp_buf* %regs)
 
13
  ret void
 
14
}