forked from OSchip/llvm-project
[driver][mips] Remove redundant curly brackets. NFC
llvm-svn: 307151
This commit is contained in:
parent
edd69bc778
commit
3369438ef4
|
@ -227,12 +227,11 @@ void mips::getMIPSTargetFeatures(const Driver &D, const llvm::Triple &Triple,
|
|||
O.matches(options::OPT_fno_PIE) || O.matches(options::OPT_fno_pie));
|
||||
}
|
||||
|
||||
if (IsN64 && NonPIC) {
|
||||
if (IsN64 && NonPIC)
|
||||
Features.push_back("+noabicalls");
|
||||
} else {
|
||||
else
|
||||
AddTargetFeature(Args, Features, options::OPT_mno_abicalls,
|
||||
options::OPT_mabicalls, "noabicalls");
|
||||
}
|
||||
|
||||
mips::FloatABI FloatABI = mips::getMipsFloatABI(D, Args);
|
||||
if (FloatABI == mips::FloatABI::Soft) {
|
||||
|
|
Loading…
Reference in New Issue