summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/darwin-section-order.ll
blob: 701028c0a5373866ed5e2fb0e37113ca69f9d355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; RUN: llc < %s -mtriple=armv7-apple-darwin | FileCheck %s

; CHECK: .section	__TEXT,__text,regular,pure_instructions
; CHECK: .section	__TEXT,myprecious
; CHECK: .section	__TEXT,__textcoal_nt,coalesced,pure_instructions
; CHECK: .section	__TEXT,__const_coal,coalesced
; CHECK: .section	__TEXT,__picsymbolstub4,symbol_stubs,none,16
; CHECK: .section	__TEXT,__StaticInit,regular,pure_instructions


define void @normal() nounwind readnone {
; CHECK: .section	__TEXT,__text,regular,pure_instructions
; CHECK: _normal:
  ret void
}

define void @special() nounwind readnone section "__TEXT,myprecious" {
; CHECK: .section	__TEXT,myprecious
; CHECK: _special:
  ret void
}