[TableGen] CodeGenDAGPatterns - (style) remove if-else chain when if block always returns. NFCI.

This commit is contained in:
Simon Pilgrim 2021-04-16 18:21:13 +01:00
parent 37a4621fb6
commit 82240e07eb
1 changed files with 1 additions and 1 deletions

View File

@ -1252,7 +1252,7 @@ StringRef TreePredicateFn::getImmType() const {
StringRef TreePredicateFn::getImmTypeIdentifier() const {
if (immCodeUsesAPInt())
return "APInt";
else if (immCodeUsesAPFloat())
if (immCodeUsesAPFloat())
return "APFloat";
return "I64";
}