IR: Move MDLocation into place
[oota-llvm.git] / test / CodeGen / XCore / trap.ll
index 45f886d332aa4a7cbc67de6968cc6ab339a71def..ef0dfd634009767d56acd5ae8953c7278a3df288 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-LABEL: test:
+; CHECK: ldc
+; CHECK: ecallf
        tail call void @llvm.trap( )
        unreachable
 }