diff options
author | Richard Trieu <rtrieu@google.com> | 2012-06-26 18:18:47 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2012-06-26 18:18:47 +0000 |
commit | 918442398476a15808244f6e6ec95b9b48a886e5 (patch) | |
tree | 6e57b1e1003bd44b1f0386e24bbac1502d4d931e /clang/lib/Driver/Tools.cpp | |
parent | 18e3dfc5475763a381737fc6e39d88f062e7d69a (diff) | |
download | bcm5719-llvm-918442398476a15808244f6e6ec95b9b48a886e5.tar.gz bcm5719-llvm-918442398476a15808244f6e6ec95b9b48a886e5.zip |
Add template type diffing to Clang. This feature will provide a better
comparison between two templated types when they both appear in a diagnostic.
Type elision will remove indentical template arguments, which can be disabled
with -fno-elide-type. Cyan highlighting is applied to the differing types.
For more formatting, -fdiagnostic-show-template-tree will output the template
type as an indented text tree, with differences appearing inline. Template
tree works with or without type elision.
llvm-svn: 159216
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index 27a222a840e..307856a1bba 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -2203,6 +2203,8 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA, Args.AddLastArg(CmdArgs, options::OPT_fno_limit_debug_info); Args.AddLastArg(CmdArgs, options::OPT_fno_operator_names); Args.AddLastArg(CmdArgs, options::OPT_faltivec); + Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_show_template_tree); + Args.AddLastArg(CmdArgs, options::OPT_fno_elide_type); // Report and error for -faltivec on anything other then PowerPC. if (const Arg *A = Args.getLastArg(options::OPT_faltivec)) |