[PATCH] D20679: [mips] Kill 'support' for untested EABI.
Simon Atanasyan via cfe-commits
cfe-commits at lists.llvm.org
Thu May 26 07:20:05 PDT 2016
atanasyan accepted this revision.
atanasyan added a reviewer: atanasyan.
atanasyan added a comment.
This revision is now accepted and ready to land.
LGTM
Tools.cpp contains the following code. We need to remove `eabi` here too.
if (CPUName.empty()) {
// Deduce CPU name from ABI name.
CPUName = llvm::StringSwitch<const char *>(ABIName)
.Cases("o32", "eabi", DefMips32CPU)
.Cases("n32", "n64", DefMips64CPU)
.Default("");
}
http://reviews.llvm.org/D20679
More information about the cfe-commits
mailing list