1; RUN: split-file %s %t 2; RUN: not llvm-as < %t/aarch64-svcount.ll -o /dev/null 2>&1 | FileCheck --check-prefix=CHECK-AARCH64-SVCOUNT %s 3; RUN: not llvm-as < %t/riscv-vector-tuple.ll -o /dev/null 2>&1 | FileCheck --check-prefix=CHECK-RISCV-VECTOR-TUPLE %s 4; RUN: not llvm-as < %t/amdgcn-named-barrier.ll -o /dev/null 2>&1 | FileCheck --check-prefix=CHECK-AMDGCN-NAMEDBARRIER %s 5; Check target extension type properties are verified in the assembler. 6 7;--- aarch64-svcount.ll 8declare target("aarch64.svcount", i32) @aarch64_svcount() 9; CHECK-AARCH64-SVCOUNT: error: target extension type aarch64.svcount should have no parameters 10 11;--- riscv-vector-tuple.ll 12declare target("riscv.vector.tuple", 99) @riscv_vector_tuple() 13; CHECK-RISCV-VECTOR-TUPLE: target extension type riscv.vector.tuple should have one type parameter and one integer parameter 14 15;--- amdgcn-named-barrier.ll 16declare target("amdgcn.named.barrier", i32) @amdgcn_named_barrier() 17; CHECK-AMDGCN-NAMEDBARRIER: target extension type amdgcn.named.barrier should have no type parameters and one integer parameter 18