[llvm-commits] [llvm] r110829 - /llvm/trunk/test/CodeGen/Thumb/barrier.ll

Evan Cheng evan.cheng at apple.com
Wed Aug 11 10:25:51 PDT 2010


Author: evancheng
Date: Wed Aug 11 12:25:51 2010
New Revision: 110829

URL: http://llvm.org/viewvc/llvm-project?rev=110829&view=rev
Log:
Fix test and re-enable it.

Modified:
    llvm/trunk/test/CodeGen/Thumb/barrier.ll

Modified: llvm/trunk/test/CodeGen/Thumb/barrier.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Thumb/barrier.ll?rev=110829&r1=110828&r2=110829&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Thumb/barrier.ll (original)
+++ llvm/trunk/test/CodeGen/Thumb/barrier.ll Wed Aug 11 12:25:51 2010
@@ -1,11 +1,11 @@
-; RUN: llc < %s -march=thumb -mattr=+v6  | FileCheck %s -check-prefix=V6
-; RUN: llc < %s -march=thumb -mattr=+v6m | FileCheck %s -check-prefix=V6M
+; RUN: llc < %s -mtriple=thumbv6-apple-darwin  | FileCheck %s -check-prefix=V6
+; RUN: llc < %s -march=thumb -mattr=+v6m       | FileCheck %s -check-prefix=V6M
 
 declare void @llvm.memory.barrier( i1 , i1 , i1 , i1 , i1 )
 
 define void @t1() {
 ; V6: t1:
-; V6_TEMPORARILY_DISABLED: blx {{_*}}sync_synchronize
+; V6: blx {{_*}}sync_synchronize
 
 ; V6M: t1:
 ; V6M: dsb
@@ -15,7 +15,7 @@
 
 define void @t2() {
 ; V6: t2:
-; V6_TEMPORARILY_DISABLED: blx {{_*}}sync_synchronize
+; V6: blx {{_*}}sync_synchronize
 
 ; V6M: t2:
 ; V6M: dmb





More information about the llvm-commits mailing list