2010-08-11 17:25:51 +00:00
|
|
|
; RUN: llc < %s -mtriple=thumbv6-apple-darwin | FileCheck %s -check-prefix=V6
|
2010-11-09 22:50:44 +00:00
|
|
|
; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=-db | FileCheck %s -check-prefix=V6
|
2011-07-07 03:55:05 +00:00
|
|
|
; RUN: llc < %s -march=thumb -mcpu=cortex-m0 | FileCheck %s -check-prefix=V6M
|
2010-08-11 06:22:01 +00:00
|
|
|
|
|
|
|
define void @t1() {
|
2010-08-11 06:30:38 +00:00
|
|
|
; V6: t1:
|
2010-08-11 17:25:51 +00:00
|
|
|
; V6: blx {{_*}}sync_synchronize
|
2010-08-11 06:30:38 +00:00
|
|
|
|
2010-08-11 06:51:54 +00:00
|
|
|
; V6M: t1:
|
2010-10-30 00:54:37 +00:00
|
|
|
; V6M: dmb ish
|
2011-09-26 21:36:10 +00:00
|
|
|
fence seq_cst
|
2010-08-11 06:22:01 +00:00
|
|
|
ret void
|
|
|
|
}
|