summaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/thumb2-badreg-operands.ll
blob: 4df06b836fc573e24e082d77c9dc452349499c7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: llc < %s -mtriple=thumbv7-apple-darwin10 | FileCheck %s

define void @b(i32 %x) nounwind optsize {
entry:
; CHECK: b
; CHECK: mov r2, sp
; CHECK: mls r0, r0, r1, r2
; CHECK: mov sp, r0
  %0 = mul i32 %x, 24                             ; <i32> [#uses=1]
  %vla = alloca i8, i32 %0, align 1               ; <i8*> [#uses=1]
  call arm_aapcscc  void @a(i8* %vla) nounwind optsize
  ret void
}

declare void @a(i8*) optsize