summaryrefslogtreecommitdiff
path: root/test/TableGen/intrinsic-varargs.td
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2016-02-10 18:40:04 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2016-02-10 18:40:04 +0000
commitb9f1dbe18d6b39fb97ad630ef309dc9f526ace3d (patch)
tree16aad5d56c7b5308b6bd1dd35868d9aa4447ba25 /test/TableGen/intrinsic-varargs.td
parent472b21716000f8ffe68e91caff998fc3a59da0a1 (diff)
SelectionDAG: Make Properties a field of SDPatternOperator
Currently you can't specify node properties like commutativity on a PatFrag. If you want to create a PatFrag on a commutative node with a hasOneUse predicate, this enables you to specify that the PatFrag is also commutable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@260404 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen/intrinsic-varargs.td')
-rw-r--r--test/TableGen/intrinsic-varargs.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TableGen/intrinsic-varargs.td b/test/TableGen/intrinsic-varargs.td
index 42ce8a95962..0aafad8093c 100644
--- a/test/TableGen/intrinsic-varargs.td
+++ b/test/TableGen/intrinsic-varargs.td
@@ -19,7 +19,7 @@ class Intrinsic<string name, list<LLVMType> param_types = []> {
string TargetPrefix = "";
list<LLVMType> RetTypes = [];
list<LLVMType> ParamTypes = param_types;
- list<IntrinsicProperty> Properties = [];
+ list<IntrinsicProperty> IntrProperties = [];
}
// isVoid needs to match the definition in ValueTypes.td