Fix ARM default floating-point ABI.

It shouldn't really matter, as we probably aren't going to
support anything but AAPCS anytime soon.
This commit is contained in:
David Nadlinger 2013-05-11 21:33:20 +02:00
parent 17ef7f7d09
commit e37f0e0d35

View file

@ -185,8 +185,9 @@ static FloatABI::Type getARMFloatABI(const llvm::Triple &triple,
return FloatABI::Soft;
}
default:
// Assume "soft", but warn the user we are guessing.
return FloatABI::SoftFP;
// Assume "soft".
// TODO: Warn the user we are guessing.
return FloatABI::Soft;
}
}
}