blob: 3dd66ae71df86863acb9876afbec0111cd55bf0f [file] [log] [blame]
Bob Wilson13e80bd2009-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 Gohmanfce288f2009-09-09 00:09:15 +00003; RUN: llc < %s -march=arm -mtriple=arm-linux-gnueabi\
Bob Wilson13e80bd2009-10-27 05:50:28 +00004; RUN: -relocation-model=pic | FileCheck %s -check-prefix=CHECKELF
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() {
Bob Wilson13e80bd2009-10-27 05:50:28 +000011; CHECKV4: mov lr, pc
12; CHECKV5: blx
13; CHECKELF: PLT
Tanya Lattner6263f942008-02-17 20:02:20 +000014 call void @g( i32 1, i32 2, i32 3, i32 4 )
15 ret void
Rafael Espindolafac00a92006-07-25 20:17:20 +000016}
17
Tanya Lattner6263f942008-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
Rafael Espindola71d94d82006-10-18 16:21:43 +000022}