[ARM] More MVE load/store tests for offsets around the negative limit. NFC
[llvm-core.git] / test / CodeGen / Thumb2 / thumb2-call.ll
blobe06df642a93ac080bcd1ee72874fc95619a3faab
1 ; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=+thumb2 | FileCheck %s
2 ; RUN: llc < %s -mtriple=thumbv7-linux -mattr=+thumb2 | FileCheck %s
4 @t = weak global i32 ()* null           ; <i32 ()**> [#uses=1]
6 declare void @g(i32, i32, i32, i32)
8 define void @f() {
9 ; CHECK-LABEL: f:
10 ; CHECK: bl {{_?}}g
11         call void @g( i32 1, i32 2, i32 3, i32 4 )
12         ret void
15 define void @h() {
16 ; CHECK-LABEL: h:
17 ; CHECK: blx r0
18         %tmp = load i32 ()*, i32 ()** @t         ; <i32 ()*> [#uses=1]
19         %tmp.upgrd.2 = call i32 %tmp( )            ; <i32> [#uses=0]
20         ret void