[XCore] Give test more generic name.
[oota-llvm.git] / test / CodeGen / XCore / trap.ll
index 45f886d332aa4a7cbc67de6968cc6ab339a71def..eb71cb6acb6e9c7df54f7f0d4e5c640b332a5c9e 100644 (file)
@@ -1,8 +1,9 @@
-; RUN: llc < %s -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
 }