InMips16HardFloat was only being set conditional on whether or

not IsSoftFloat was set so remove it from here simplifying the
accessor.

llvm-svn: 236795
This commit is contained in:
Eric Christopher 2015-05-07 23:10:23 +00:00
parent e8ae3e3acd
commit 54966ebc54
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ public:
bool hasStandardEncoding() const { return !inMips16Mode(); }
bool useSoftFloat() const { return IsSoftFloat && !InMips16HardFloat; }
bool useSoftFloat() const { return IsSoftFloat; }
bool enableLongBranchPass() const {
return hasStandardEncoding() || allowMixed16_32();