[OpenACC] Enable 'attach' clause for combined constructs
[llvm-project.git] / llvm / test / CodeGen / Thumb2 / thumb2-call.ll
blob2248e18f577fb06ded63b07e3aea197f3525c28d
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 ptr null           ; <ptr> [#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 ptr, ptr @t         ; <ptr> [#uses=1]
19         %tmp.upgrd.2 = call i32 %tmp( )            ; <i32> [#uses=0]
20         ret void