aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-04-11 18:21:03 +0000
committerbloodstalker <thabogre@gmail.com>2017-04-11 18:21:03 +0000
commitf19771c2c99eedd7b86fafb8f56796926e708982 (patch)
treec7ac600e1ca8239d2adae07fab269783e480b94f /misc
parentadded bruiser makefile (diff)
downloadmutator-f19771c2c99eedd7b86fafb8f56796926e708982.tar.gz
mutator-f19771c2c99eedd7b86fafb8f56796926e708982.zip
holds the mutator table descriptor for the custom mutator attributes. WIP.
Diffstat (limited to 'misc')
-rw-r--r--misc/mutator.td10
1 files changed, 10 insertions, 0 deletions
diff --git a/misc/mutator.td b/misc/mutator.td
new file mode 100644
index 0000000..f08fe03
--- /dev/null
+++ b/misc/mutator.td
@@ -0,0 +1,10 @@
+
+def mutator_ignore : InheritableAttr
+{
+ let Spellings = [CXX11<"clang", "mutator-ignore", "">];
+ let Subjects = Subjectlist<[Var, ObjCIvar, Type, Enum, EnumConstant, Label, Field, ObjCMethod, FunctionLike, CXXRecord]>;
+ let Documentation = [Undocumented];
+ let ASTNode = 0;
+ let Args = [BoolArgument<"ExtendToDeclRefExpr">];
+ let Semahandler = 0;
+}