summaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb/barrier.ll
blob: 8fca273cc238529e6d4ea70261c677a2a3c27325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llc < %s -mtriple=thumbv6-apple-darwin  | FileCheck %s -check-prefix=V6
; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=-db | FileCheck %s -check-prefix=V6
; RUN: llc < %s -march=thumb -mcpu=cortex-m0   | FileCheck %s -check-prefix=V6M

define void @t1() {
; V6-LABEL: t1:
; V6: blx {{_*}}sync_synchronize

; V6M-LABEL: t1:
; V6M: dmb ish
  fence seq_cst
  ret void
}