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

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

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