[NVPTX] Add missing patterns for div.approx with immediate denominator
[oota-llvm.git] / test / CodeGen / XCore / trap.ll
index b3d3bc2270e3281456d76a90ff94f2db75a4ddaa..ef0dfd634009767d56acd5ae8953c7278a3df288 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-LABEL: test:
+; CHECK: ldc
+; CHECK: ecallf
        tail call void @llvm.trap( )
        unreachable
 }