Remove the 'N' modifier from llvm-ar.
[oota-llvm.git] / test / CodeGen / Thumb / barrier.ll
index 0081837054a1383ca3061a850403c8eafceb1fab..50d138fe44ddf9411cb6c13d9ea0f47fb9944015 100644 (file)
@@ -1,24 +1,13 @@
-; RUN: llc < %s -march=thumb -mattr=+v6      | FileCheck %s -check-prefix=V6
-; RUN: llc < %s -march=thumb -mcpu=cortex-m0 | FileCheck %s -check-prefix=M0
-
-declare void @llvm.memory.barrier( i1 , i1 , i1 , i1 , i1 )
+; 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: t1:
 ; V6: blx {{_*}}sync_synchronize
 
-; M0: t1:
-; M0: dsb
-  call void @llvm.memory.barrier( i1 false, i1 false, i1 false, i1 true, i1 true )
-  ret void
-}
-
-define void @t2() {
-; V6: t2:
-; V6: blx {{_*}}sync_synchronize
-
-; M0: t2:
-; M0: dmb
-  call void @llvm.memory.barrier( i1 false, i1 false, i1 false, i1 true, i1 false )
+; V6M: t1:
+; V6M: dmb ish
+  fence seq_cst
   ret void
 }