CWG 1394: Incomplete types as parameters of deleted functions
[llvm-project.git] / llvm / test / TableGen / intrinsic-struct.td
blobbc044a4a6f858e42104439de37885d1ff205e4d5
1 // RUN: llvm-tblgen -gen-intrinsic-enums %s | FileCheck %s
2 // XFAIL: vg_leak
4 class IntrinsicProperty<bit is_default = 0> {
5   bit IsDefault = is_default;
8 class SDNodeProperty;
10 class ValueType<int size, int value> {
11   string Namespace = "MVT";
12   int Size = size;
13   int Value = value;
16 class LLVMType<ValueType vt> {
17   ValueType VT = vt;
20 class Intrinsic<string name, list<LLVMType> ret_types = []> {
21   string LLVMName = name;
22   bit isTarget = 0;
23   string TargetPrefix = "";
24   list<LLVMType> RetTypes = ret_types;
25   list<LLVMType> ParamTypes = [];
26   list<IntrinsicProperty> IntrProperties = [];
27   list<SDNodeProperty> Properties = [];
28   bit DisableDefaultAttributes = 1;
31 def iAny : ValueType<0, 253>;
32 def llvm_anyint_ty : LLVMType<iAny>;
34 // Make sure we can return up to 8 values
35 // CHECK: returns_8_results = {{[0-9]+}}, // llvm.returns.8.results
36 def int_returns_8_results : Intrinsic<"llvm.returns.8.results",
37     [llvm_anyint_ty, llvm_anyint_ty, llvm_anyint_ty, llvm_anyint_ty,
38      llvm_anyint_ty, llvm_anyint_ty, llvm_anyint_ty, llvm_anyint_ty]>;