blob: 3dd66ae71df86863acb9876afbec0111cd55bf0f [file] [log] [blame]
Bob Wilsonf59fc082009-10-27 05:50:28 +00001; RUN: llc < %s -march=arm | FileCheck %s -check-prefix=CHECKV4
2; RUN: llc < %s -march=arm -mattr=+v5t | FileCheck %s -check-prefix=CHECKV5
Dan Gohmanda594cf2009-09-09 00:09:15 +00003; RUN: llc < %s -march=arm -mtriple=arm-linux-gnueabi\
Bob Wilsonf59fc082009-10-27 05:50:28 +00004; RUN: -relocation-model=pic | FileCheck %s -check-prefix=CHECKELF
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005
Tanya Lattner246a1372008-02-17 20:02:20 +00006@t = weak global i32 ()* null ; <i32 ()**> [#uses=1]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007
Tanya Lattner246a1372008-02-17 20:02:20 +00008declare void @g(i32, i32, i32, i32)
9
10define void @f() {
Bob Wilsonf59fc082009-10-27 05:50:28 +000011; CHECKV4: mov lr, pc
12; CHECKV5: blx
13; CHECKELF: PLT
Tanya Lattner246a1372008-02-17 20:02:20 +000014 call void @g( i32 1, i32 2, i32 3, i32 4 )
15 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016}
17
Tanya Lattner246a1372008-02-17 20:02:20 +000018define void @g.upgrd.1() {
19 %tmp = load i32 ()** @t ; <i32 ()*> [#uses=1]
20 %tmp.upgrd.2 = tail call i32 %tmp( ) ; <i32> [#uses=0]
21 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022}