Change names for MIPS "generic" processors defined in Mips.td to match what GNU

tools use. Patch by Simon Atanasyan.

"mips32r1" => "mips32"
"4ke" => mips32r2"
"mips64r1" => "mips64"



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145451 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Akira Hatanaka
2011-11-29 23:08:41 +00:00
parent 4c7edb3ad8
commit ed2a7d2780
8 changed files with 12 additions and 12 deletions

View File

@ -31,7 +31,7 @@ MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU,
{
std::string CPUName = CPU;
if (CPUName.empty())
CPUName = "mips32r1";
CPUName = "mips32";
// Parse features string.
ParseSubtargetFeatures(CPUName, FS);