summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticOptions.def
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2016-08-26 15:45:36 +0000
committerHans Wennborg <hans@hanshq.net>2016-08-26 15:45:36 +0000
commit216f66475925c7338f67bb87ba613d87884a18e0 (patch)
treec0361764b4131b657deb929c34f6a44766266c6d /include/clang/Basic/DiagnosticOptions.def
parentcaffecbd0e4dc7dfbfb7bb5188bc9be03395585c (diff)
Add support for -fdiagnostics-absolute-paths: printing absolute paths in diagnostics
Differential Revision: https://reviews.llvm.org/D23816 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@279827 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticOptions.def')
-rw-r--r--include/clang/Basic/DiagnosticOptions.def1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticOptions.def b/include/clang/Basic/DiagnosticOptions.def
index f4ba6da81f..0ab6724ed9 100644
--- a/include/clang/Basic/DiagnosticOptions.def
+++ b/include/clang/Basic/DiagnosticOptions.def
@@ -50,6 +50,7 @@ DIAGOPT(Pedantic, 1, 0) /// -pedantic
DIAGOPT(PedanticErrors, 1, 0) /// -pedantic-errors
DIAGOPT(ShowColumn, 1, 1) /// Show column number on diagnostics.
DIAGOPT(ShowLocation, 1, 1) /// Show source location information.
+DIAGOPT(AbsolutePath, 1, 0) /// Use absolute paths.
DIAGOPT(ShowCarets, 1, 1) /// Show carets in diagnostics.
DIAGOPT(ShowFixits, 1, 1) /// Show fixit information.
DIAGOPT(ShowSourceRanges, 1, 0) /// Show source ranges in numeric form.