brintos

brintos / llvm-project-archived public Read only

0
0
Text · 565 B · 2248e18 Raw
22 lines · plain
1; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=+thumb2 | FileCheck %s2; RUN: llc < %s -mtriple=thumbv7-linux -mattr=+thumb2 | FileCheck %s3 4@t = weak global ptr null           ; <ptr> [#uses=1]5 6declare void @g(i32, i32, i32, i32)7 8define void @f() {9; CHECK-LABEL: f:10; CHECK: bl {{_?}}g11        call void @g( i32 1, i32 2, i32 3, i32 4 )12        ret void13}14 15define void @h() {16; CHECK-LABEL: h:17; CHECK: blx r018        %tmp = load ptr, ptr @t         ; <ptr> [#uses=1]19        %tmp.upgrd.2 = call i32 %tmp( )            ; <i32> [#uses=0]20        ret void21}22