diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-08-22 06:56:37 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-08-22 06:56:37 +0000 |
commit | e97673f10fbb557be2d95f6ca0fcdb6f6dc82b3b (patch) | |
tree | 31a848f632f7506bc4011785460fa087553ebc4d /lib/Driver/ToolChains.cpp | |
parent | 875ab10245d3bf37252dd822aa1616bb0a391095 (diff) |
Add two new enumerations to the unsupported list for Windows so that all cases
are handled.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111773 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/ToolChains.cpp')
-rw-r--r-- | lib/Driver/ToolChains.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp index db898e978a..3d3c7cc0ff 100644 --- a/lib/Driver/ToolChains.cpp +++ b/lib/Driver/ToolChains.cpp @@ -1107,6 +1107,8 @@ Tool &Windows::SelectTool(const Compilation &C, const JobAction &JA) const { switch (Key) { case Action::InputClass: case Action::BindArchClass: + case Action::LipoJobClass: + case Action::DsymutilJobClass: assert(0 && "Invalid tool kind."); case Action::PreprocessJobClass: case Action::PrecompileJobClass: |