Remove the -color-ss-with-regs option.
[oota-llvm.git] / test / CodeGen / XCore / trap.ll
index b3d3bc2270e3281456d76a90ff94f2db75a4ddaa..eb71cb6acb6e9c7df54f7f0d4e5c640b332a5c9e 100644 (file)
@@ -1,8 +1,9 @@
-; RUN: llvm-as < %s | llc -march=xcore > %t1.s
-; RUN: grep "ecallf" %t1.s | count 1
-; RUN: grep "ldc" %t1.s | count 1
+; RUN: llc < %s -march=xcore | FileCheck %s
 define i32 @test() noreturn nounwind  {
 entry:
+; CHECK: test:
+; CHECK: ldc
+; CHECK: ecallf
        tail call void @llvm.trap( )
        unreachable
 }