mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-09 10:05:41 +00:00
2abadea537
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205586 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|