diff options
Diffstat (limited to 'gcc/config/arc/arc.h')
-rw-r--r-- | gcc/config/arc/arc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/arc/arc.h b/gcc/config/arc/arc.h index 6eee0381989..10a163bad9a 100644 --- a/gcc/config/arc/arc.h +++ b/gcc/config/arc/arc.h @@ -1047,9 +1047,9 @@ do { \ /* Some insns set all condition code flags, some only set the ZNC flags, and some only set the ZN flags. */ -#define EXTRA_CC_MODES CCZNCmode, CCZNmode - -#define EXTRA_CC_NAMES "CCZNC", "CCZN" +#define EXTRA_CC_MODES \ + CC(CCZNCmode, "CCZNC") \ + CC(CCZNmode, "CCZN") /* Given a comparison code (EQ, NE, etc.) and the first operand of a COMPARE, return the mode to be used for the comparison. */ |