mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
02c638e450
The usual default of "dmb ish" (inner-shareable) isn't even a valid instruction on v6M or v7M (well, it does the same thing but software is strongly discouraged from using it) so we should emit a full-system barrier there. llvm-svn: 189483
14 lines
379 B
LLVM
14 lines
379 B
LLVM
; 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
|
|
}
|