[Driver][Mips] Fix else-after-return.

No functional changes.

llvm-svn: 211984
This commit is contained in:
Simon Atanasyan 2014-06-28 15:56:08 +00:00
parent 755d7f9c28
commit 98ba8a657d
1 changed files with 6 additions and 4 deletions

View File

@ -5523,11 +5523,12 @@ public:
if (Name == "o32" || Name == "eabi") {
ABI = Name;
return true;
} else if (Name == "32") {
}
if (Name == "32") {
ABI = "o32";
return true;
} else
return false;
}
return false;
}
void getTargetDefines(const LangOptions &Opts,
MacroBuilder &Builder) const override {
@ -5661,7 +5662,8 @@ public:
setN32ABITypes();
ABI = Name;
return true;
} else if (Name == "n64" || Name == "64") {
}
if (Name == "n64" || Name == "64") {
setN64ABITypes();
ABI = "n64";
return true;