| Index: src/arm64/constants-arm64.h
|
| diff --git a/src/arm64/constants-arm64.h b/src/arm64/constants-arm64.h
|
| index 3b5591f0f224374fcc701d49243d8c38fd8c1c54..4afd73343bbded3af37863312e6ed90a33327650 100644
|
| --- a/src/arm64/constants-arm64.h
|
| +++ b/src/arm64/constants-arm64.h
|
| @@ -258,7 +258,7 @@ enum Condition {
|
| nv = 15 // Behaves as always/al.
|
| };
|
|
|
| -inline Condition InvertCondition(Condition cond) {
|
| +inline Condition NegateCondition(Condition cond) {
|
| // Conditions al and nv behave identically, as "always true". They can't be
|
| // inverted, because there is no never condition.
|
| ASSERT((cond != al) && (cond != nv));
|
| @@ -266,7 +266,7 @@ inline Condition InvertCondition(Condition cond) {
|
| }
|
|
|
| // Corresponds to transposing the operands of a comparison.
|
| -inline Condition ReverseConditionForCmp(Condition cond) {
|
| +inline Condition ReverseCondition(Condition cond) {
|
| switch (cond) {
|
| case lo:
|
| return hi;
|
|
|