blob: 52246c3f0cd774cf3c621756f81965b2b842b354 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s -march=arm | grep {mov lr, pc}
2; RUN: llc < %s -march=arm -mattr=+v5t | grep blx
3; RUN: llc < %s -march=arm -mtriple=arm-linux-gnueabi\
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +00004; RUN: -relocation-model=pic | grep {PLT}
Evan Cheng02b985c2007-01-19 09:20:23 +00005
Tanya Lattner6263f942008-02-17 20:02:20 +00006@t = weak global i32 ()* null ; <i32 ()**> [#uses=1]
Rafael Espindola71d94d82006-10-18 16:21:43 +00007
Tanya Lattner6263f942008-02-17 20:02:20 +00008declare void @g(i32, i32, i32, i32)
9
10define void @f() {
11 call void @g( i32 1, i32 2, i32 3, i32 4 )
12 ret void
Rafael Espindolafac00a92006-07-25 20:17:20 +000013}
14
Tanya Lattner6263f942008-02-17 20:02:20 +000015define void @g.upgrd.1() {
16 %tmp = load i32 ()** @t ; <i32 ()*> [#uses=1]
17 %tmp.upgrd.2 = tail call i32 %tmp( ) ; <i32> [#uses=0]
18 ret void
Rafael Espindola71d94d82006-10-18 16:21:43 +000019}