diff options
| author | Daniel Sanders <daniel.sanders@imgtec.com> | 2016-05-27 14:30:23 +0000 |
|---|---|---|
| committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2016-05-27 14:30:23 +0000 |
| commit | 07c86542849cf56fe0be3720cb7344b95e3eb82e (patch) | |
| tree | f0f74dea066a5ef0d39c43fb2856cc62a7e966c5 /clang/lib/Driver | |
| parent | 82de7d323d1d03764d3595e9d2d903437e9022f2 (diff) | |
| download | bcm5719-llvm-07c86542849cf56fe0be3720cb7344b95e3eb82e.tar.gz bcm5719-llvm-07c86542849cf56fe0be3720cb7344b95e3eb82e.zip | |
[mips] Kill 'support' for untested EABI.
Summary:
There are no llvm backend tests* for EABI and no EABI buildbots. There were only
three clang tests, all of which checked that -mabi=eabi was passed to the
assembler.
*There is a single backend test that specifies EABI but it actually tests MIPS16.
Reviewers: atanasyan
Subscribers: emaste, sdardis, atanasyan, cfe-commits
Differential Revision: http://reviews.llvm.org/D20679
llvm-svn: 270998
Diffstat (limited to 'clang/lib/Driver')
| -rw-r--r-- | clang/lib/Driver/Tools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index 39f78c30667..33de18d7104 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -1233,7 +1233,7 @@ void mips::getMipsCPUAndABI(const ArgList &Args, const llvm::Triple &Triple, if (CPUName.empty()) { // Deduce CPU name from ABI name. CPUName = llvm::StringSwitch<const char *>(ABIName) - .Cases("o32", "eabi", DefMips32CPU) + .Case("o32", DefMips32CPU) .Cases("n32", "n64", DefMips64CPU) .Default(""); } |

