2016-12-18 00:35:53 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "DiagnosticsMatcher.h"
|
|
|
|
|
2018-01-30 19:40:00 +03:00
|
|
|
DiagnosticsMatcher::DiagnosticsMatcher(CompilerInstance &CI) {
|
2017-10-20 20:11:50 +03:00
|
|
|
#define CHECK(cls, name) \
|
|
|
|
cls##_.registerMatchers(&AstMatcher); \
|
2019-10-31 15:16:35 +03:00
|
|
|
cls##_.registerPPCallbacks(CI);
|
2016-12-18 05:14:37 +03:00
|
|
|
#include "Checks.inc"
|
2020-03-05 19:29:13 +03:00
|
|
|
#include "external/ExternalChecks.inc"
|
2020-03-17 10:01:09 +03:00
|
|
|
#ifdef MOZ_CLANG_PLUGIN_ALPHA
|
|
|
|
#include "alpha/AlphaChecks.inc"
|
|
|
|
#endif
|
2016-12-18 05:14:37 +03:00
|
|
|
#undef CHECK
|
2016-12-18 00:35:53 +03:00
|
|
|
}
|