summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/ARM/readtp.ll
blob: 190768076351f53432b2eaa8c58c6b202f65d3c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
; RUN: llc -mtriple=armeb-linux-gnueabihf -O2 -mattr=+read-tp-hard %s -o - | FileCheck %s -check-prefix=CHECK-HARD
; RUN: llc -mtriple=armeb-linux-gnueabihf -O2 %s -o - | FileCheck %s -check-prefix=CHECK-SOFT


; __thread int counter;
;  void foo() {
;    counter = 5;
;  }


@counter = thread_local local_unnamed_addr global i32 0, align 4

define void @foo() local_unnamed_addr #0 {
entry:
  store i32 5, i32* @counter, align 4
  ret void
}


; CHECK-LABEL: foo:
; CHECK-HARD:    mrc	p15, #0, {{r[0-9]+}}, c13, c0, #3
; CHECK-SOFT:    bl	__aeabi_read_tp
OpenPOWER on IntegriCloud