diff options
author | Eric Christopher <echristo@gmail.com> | 2012-10-18 21:52:18 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-10-18 21:52:18 +0000 |
commit | da3301eec823fe770bfa49a1cb19649506caa698 (patch) | |
tree | 73a65232b124c08da8196175ac4b1891a70ded8b /lib/Driver/Tools.cpp | |
parent | 5b341da0eb6478c22b9587f03572a249ebbd00dc (diff) |
Add a new option for and disable column number information as there
are no known current users of column info. Robustify and fix up
a few tests in the process. Reduces the size of debug information
by a small amount.
Part of PR14106
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166236 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Tools.cpp')
-rw-r--r-- | lib/Driver/Tools.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index dd2d80c9d6..80691ee9c4 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -2050,6 +2050,8 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA, // We ignore flags -gstrict-dwarf and -grecord-gcc-switches for now. Args.ClaimAllArgs(options::OPT_g_flags_Group); + if (Args.hasArg(options::OPT_gcolumn_info)) + CmdArgs.push_back("-dwarf-column-info"); Args.AddAllArgs(CmdArgs, options::OPT_ffunction_sections); Args.AddAllArgs(CmdArgs, options::OPT_fdata_sections); |