forked from OSchip/llvm-project
[TableGen] CodeGenDAGPatterns - (style) remove if-else chain when if block always returns. NFCI.
This commit is contained in:
parent
37a4621fb6
commit
82240e07eb
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue