mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
e5bf2f858c
llvm-svn: 205586
14 lines
392 B
LLVM
14 lines
392 B
LLVM
; 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
|
|
}
|