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