blob: 1c27fa09884f6c2a43ec237e0d6532210f865609 [file] [log] [blame]
; 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 sy
fence seq_cst
ret void
}