1 ; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
3 declare void @llvm.experimental.stackmap(i64, i32)
4 declare void @llvm.donothing(...)
7 call void @llvm.experimental.stackmap(i64 0, i32 12)
8 ; CHECK: Callsite was not defined with variable arguments!
13 call void (...) @llvm.donothing(i64 0, i64 1)
14 ; CHECK: Intrinsic was not defined with variable arguments!