Index: src/arm/constants-arm.h |
diff --git a/src/arm/constants-arm.h b/src/arm/constants-arm.h |
index 52602ca7afd176395588a130dd83e1f34ce19c6d..893301d53ef01b039671992771d548b222777cea 100644 |
--- a/src/arm/constants-arm.h |
+++ b/src/arm/constants-arm.h |
@@ -497,8 +497,15 @@ enum { |
// Condition code updating mode. |
enum SBit { |
- SetCC = 1 << 20, // Set condition code. |
- LeaveCC = 0 << 20 // Leave condition code unchanged. |
+ SetCCBit = 1 << 20, // Set condition code. |
+ LeaveCCBit = 0 << 20 // Leave condition code unchanged. |
+}; |
+ |
+ |
+enum SBitMode { |
+ DontCareCC, |
+ SetCC, |
+ LeaveCC |
}; |