Mercurial > hg > CbC > CbC_llvm
diff llvm/test/TableGen/intrinsic-pointer-to-any.td @ 207:2e18cbf3894f
LLVM12
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 08 Jun 2021 06:07:14 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
line wrap: on
line diff
--- a/llvm/test/TableGen/intrinsic-pointer-to-any.td Mon May 25 11:55:54 2020 +0900 +++ b/llvm/test/TableGen/intrinsic-pointer-to-any.td Tue Jun 08 06:07:14 2021 +0900 @@ -6,7 +6,10 @@ // case, so TableGen would hit an assertion in EncodeFixedType that was checking // to ensure that the substitution being processed was correctly replaced. -class IntrinsicProperty; +class IntrinsicProperty<bit is_default = 0> { + bit IsDefault = is_default; +} + class SDNodeProperty; class ValueType<int size, int value> { @@ -32,6 +35,7 @@ list<IntrinsicProperty> IntrProperties = []; list<SDNodeProperty> Properties = []; bit isTarget = 0; + bit DisableDefaultAttributes = 1; } class LLVMQualPointerType<LLVMType elty>