summaryrefslogtreecommitdiff
path: root/include/clang/Basic/DiagnosticFrontendKinds.td
diff options
context:
space:
mode:
authorRoman Divacky <rdivacky@freebsd.org>2012-12-13 16:09:42 +0000
committerRoman Divacky <rdivacky@freebsd.org>2012-12-13 16:09:42 +0000
commitfc2929fdb7cce47daf5b2857a56013fad0257cb6 (patch)
tree8a743249938d975d1e37653bf1f0f8d8eb7b6647 /include/clang/Basic/DiagnosticFrontendKinds.td
parent702baef6d636004db1a0bb6aa34b664650e594f6 (diff)
downloadclang-fc2929fdb7cce47daf5b2857a56013fad0257cb6.tar.gz
clang-fc2929fdb7cce47daf5b2857a56013fad0257cb6.tar.bz2
clang-fc2929fdb7cce47daf5b2857a56013fad0257cb6.tar.xz
Dont use/link ARCMT, StaticAnalyzer and Rewriter to clang when the user
specifies not to. Dont build ASTMatchers with Rewriter disabled and StaticAnalyzer when it's disabled. Without all those three, the clang binary shrinks (x86_64) from ~36MB to ~32MB (unstripped). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170135 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticFrontendKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticFrontendKinds.td2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticFrontendKinds.td b/include/clang/Basic/DiagnosticFrontendKinds.td
index 84c1345324..13641c1841 100644
--- a/include/clang/Basic/DiagnosticFrontendKinds.td
+++ b/include/clang/Basic/DiagnosticFrontendKinds.td
@@ -60,6 +60,8 @@ def warn_fe_cc_log_diagnostics_failure : Warning<
"unable to open CC_LOG_DIAGNOSTICS file: %0 (using stderr)">;
def err_fe_no_pch_in_dir : Error<
"no suitable precompiled header file found in directory '%0'">;
+def err_fe_action_not_available : Error<
+ "action %0 not compiled in">;
def warn_fe_serialized_diag_failure : Warning<
"unable to open file %0 for serializing diagnostics (%1)">,