Home | History | Annotate | Download | only in Thumb2
      1 ; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=+thumb2 | FileCheck %s
      2 ; RUN: llc < %s -mtriple=thumbv7-linux -mattr=+thumb2 | FileCheck %s
      3 
      4 @t = weak global i32 ()* null           ; <i32 ()**> [#uses=1]
      5 
      6 declare void @g(i32, i32, i32, i32)
      7 
      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
     13 }
     14 
     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
     21 }
     22