Added predicate comparison GreaterEqualWithNan

This commit is contained in:
Hexagon12
2018-08-31 10:40:18 +03:00
parent 26aaa86ece
commit d626bc8c62
2 changed files with 4 additions and 3 deletions

View File

@ -147,6 +147,7 @@ enum class PredCondition : u64 {
LessThanWithNan = 9,
GreaterThanWithNan = 12,
NotEqualWithNan = 13,
GreaterEqualWithNan = 14,
// TODO(Subv): Other condition types
};