diff options
author | bloodstalker <thabogre@gmail.com> | 2019-11-29 12:35:42 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2019-11-29 12:35:42 +0000 |
commit | e7b9c6e2552a861a949585c38e2a881f5cdcb0a7 (patch) | |
tree | c72fafe3218c53a8ec79c2ec849ddd54d15265aa /m0/mutator-lvl0.cpp | |
parent | fix (diff) | |
download | mutator-e7b9c6e2552a861a949585c38e2a881f5cdcb0a7.tar.gz mutator-e7b9c6e2552a861a949585c38e2a881f5cdcb0a7.zip |
added libwasm32 as a lua module to bruiser now. you can get a quick wasm dump like that. some updates here and there to the READMEs. there is also a gitter group now. come say hi.and join please.
Diffstat (limited to 'm0/mutator-lvl0.cpp')
-rw-r--r-- | m0/mutator-lvl0.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/m0/mutator-lvl0.cpp b/m0/mutator-lvl0.cpp index cdd625f..abbcb52 100644 --- a/m0/mutator-lvl0.cpp +++ b/m0/mutator-lvl0.cpp @@ -7638,12 +7638,20 @@ public: void EndSourceFileAction() override {} std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, StringRef file) override { +#if __clang_major__ <= 9 CI.getPreprocessor().addPPCallbacks(llvm::make_unique<PPInclusion>(&CI.getSourceManager())); +#elif __clang_major__ >= 10 + CI.getPreprocessor().addPPCallbacks(std::make_unique<PPInclusion>(&CI.getSourceManager())); +#endif DiagnosticsEngine &DiagEngine = CI.getPreprocessor().getDiagnostics(); Mutator0DiagnosticConsumer* M0DiagConsumer = new Mutator0DiagnosticConsumer; DiagEngine.setClient(M0DiagConsumer, true); TheRewriter.setSourceMgr(CI.getSourceManager(), CI.getLangOpts()); +#if __clang_major__ <= 9 return llvm::make_unique<MyASTConsumer>(TheRewriter); +#elif __clang_major__ >= 10 + return std::make_unique<MyASTConsumer>(TheRewriter); +#endif } private: |