diff options
author | bloodstalker <thabogre@gmail.com> | 2016-12-25 10:24:28 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-12-25 10:24:28 +0000 |
commit | c42dcb569b41013f3c00d57b776d7de22a6f70ca (patch) | |
tree | 1d30d1d85eb47b190def5ba1d2e0ea42d91dc42b /mutator-lvl0.cpp | |
parent | trying to figure out why all of a sudden the travis build is broken (diff) | |
download | mutator-c42dcb569b41013f3c00d57b776d7de22a6f70ca.tar.gz mutator-c42dcb569b41013f3c00d57b776d7de22a6f70ca.zip |
took out the matcher that has caused incompatibility with llvm 3.9
Diffstat (limited to '')
-rw-r--r-- | mutator-lvl0.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mutator-lvl0.cpp b/mutator-lvl0.cpp index 9fdbb97..41c1e18 100644 --- a/mutator-lvl0.cpp +++ b/mutator-lvl0.cpp @@ -3724,7 +3724,7 @@ public: HandlerForCF145(R), HandlerForCF146(R), HandlerForCF147(R), HandlerForCF148(R), HandlerForSwitch154(R), HandlerForPTC111(R), \ HandlerForCSE137(R), HandlerForDCDF810(R), HandlerForFunction165(R), HandlerForFunction1652(R), HandlerForPointer171(R), \ HandlerForPointer1723(R), HandlerForPointer174(R), HandlerForPointer175(R), HandlerForTypes61(R), HandlerForSU181(R), \ - HandlerForMCPTCCSTYLE(R), HandlerForATC101(R), HandlerForIdent5(R), HandlerForDCDF87(R), HandlerForDCDF88(R) { + HandlerForMCPTCCSTYLE(R), HandlerForATC101(R), HandlerForIdent5(R), HandlerForDCDF87(R) { /*forstmts whithout a compound statement.*/ Matcher.addMatcher(forStmt(unless(hasDescendant(compoundStmt()))).bind("mcfor"), &HandlerForCmpless); @@ -3912,7 +3912,7 @@ public: Matcher.addMatcher(declRefExpr(allOf(hasAncestor(functionDecl().bind("mcdcdf87daddy")), \ to(varDecl(unless(hasAncestor(functionDecl()))).bind("mcdcdf87origin")))).bind("mcdcdfobj"), &HandlerForDCDF87); - Matcher.addMatcher(namedDecl(hasExternalFormalLinkage()).bind("mcdcdf88"), &HandlerForDCDF88); + //Matcher.addMatcher(namedDecl(hasExternalFormalLinkage()).bind("mcdcdf88"), &HandlerForDCDF88); } void HandleTranslationUnit(ASTContext &Context) override { @@ -3978,7 +3978,7 @@ private: MCATC101 HandlerForATC101; MCIdent5 HandlerForIdent5; MCDCDF87 HandlerForDCDF87; - MCDCDF88 HandlerForDCDF88; + //MCDCDF88 HandlerForDCDF88; MatchFinder Matcher; }; /**********************************************************************************************************************/ |