diff options
author | Eric Christopher <echristo@apple.com> | 2012-02-06 19:13:09 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-02-06 19:13:09 +0000 |
commit | 3622221c87e25f2c1d20236e8bcf22d622f50f08 (patch) | |
tree | be264127ac10bd4d0fcb3c4e5fb289bf8f5bdda7 /clang/lib/Driver/Tools.cpp | |
parent | 9033e2b35832a924d8788833bb363b5d22fb39c0 (diff) | |
download | bcm5719-llvm-3622221c87e25f2c1d20236e8bcf22d622f50f08.tar.gz bcm5719-llvm-3622221c87e25f2c1d20236e8bcf22d622f50f08.zip |
Update the command line here and update the comment, we're just going
to leave this as a debug only option for now.
llvm-svn: 149890
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 5c88468b296..0b713c111b0 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -4079,6 +4079,8 @@ void darwin::VerifyDebug::ConstructJob(Compilation &C, const JobAction &JA, const char *LinkingOutput) const { ArgStringList CmdArgs; CmdArgs.push_back("--verify"); + CmdArgs.push_back("--debug-info"); + CmdArgs.push_back("--eh-frame"); assert(Inputs.size() == 1 && "Unable to handle multiple inputs."); const InputInfo &Input = Inputs[0]; |