Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / ARM / 2010-12-08-tpsoft.ll
blob652b53b7380635cb526d6e15bf035b5ebe7bed0c
1 ; RUN: llc  %s -mtriple=armv7-linux-gnueabi -o - | \
2 ; RUN:    FileCheck  -check-prefix=ELFASM %s 
3 ; RUN: llc  %s -mtriple=armv7-linux-gnueabi -filetype=obj -o - | \
4 ; RUN:    llvm-readobj -S --sd - | FileCheck  -check-prefix=ELFOBJ %s
6 ;; Make sure that bl __aeabi_read_tp is materialized and fixed up correctly
7 ;; in the obj case. 
9 @i = external thread_local global i32
10 @a = external global i8
11 @b = external global [10 x i8]
13 define arm_aapcs_vfpcc i32 @main() nounwind {
14 entry:
15   %0 = load i32, ptr @i, align 4
16   switch i32 %0, label %bb2 [
17     i32 12, label %bb
18     i32 13, label %bb1
19   ]
21 bb:                                               ; preds = %entry
22   %1 = tail call arm_aapcs_vfpcc  i32 @foo(ptr @a) nounwind
23   ret i32 %1
24 ; ELFASM:               bl      __aeabi_read_tp
27 ; ELFOBJ:      Sections [
28 ; ELFOBJ:        Section {
29 ; ELFOBJ:          Name: .text
30 ; ELFOBJ:          SectionData (
31 ;;;                  BL __aeabi_read_tp is ---------+
32 ;;;                                                 V
33 ; ELFOBJ-NEXT:     0000: 00482DE9 3C009FE5 00109FE7 FEFFFFEB
36 bb1:                                              ; preds = %entry
37   %2 = tail call arm_aapcs_vfpcc  i32 @bar(ptr @b) nounwind
38   ret i32 %2
40 bb2:                                              ; preds = %entry
41   ret i32 -1
44 declare arm_aapcs_vfpcc i32 @foo(ptr)
46 declare arm_aapcs_vfpcc i32 @bar(ptr)