summaryrefslogtreecommitdiffstats
path: root/include/clang/Frontend/DiagnosticOptions.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-12 07:28:21 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-12 07:28:21 +0000
commit11e729d295378bdc185c8fb87d3326f24d1840d0 (patch)
tree1896f5d00f352164f03eb02509d4be9286b9f5fb /include/clang/Frontend/DiagnosticOptions.h
parent00e5b8d4518fe2b7b8f043b7dd82eaa4f07ded3c (diff)
Move dump-build-information option into DiagnosticOptions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86966 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/DiagnosticOptions.h')
-rw-r--r--include/clang/Frontend/DiagnosticOptions.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Frontend/DiagnosticOptions.h b/include/clang/Frontend/DiagnosticOptions.h
index 58673e4dad..39dc48ebfe 100644
--- a/include/clang/Frontend/DiagnosticOptions.h
+++ b/include/clang/Frontend/DiagnosticOptions.h
@@ -31,6 +31,10 @@ public:
/// Column limit for formatting message diagnostics, or 0 if unused.
unsigned MessageLength;
+ /// If non-empty, a file to log extended build information to, for development
+ /// testing and analysis.
+ std::string DumpBuildInformation;
+
public:
DiagnosticOptions() {
ShowColumn = 1;