diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index cf53c8c34..9eed10498 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,8 @@ +2013-04-06 David S. Miller + + * sparc.h (F_PREFERRED): Define. + (F_PREF_ALIAS): Define. + 2013-04-03 Nick Clifton * v850.h (V850_INVERSE_PCREL): Define. diff --git a/include/opcode/sparc.h b/include/opcode/sparc.h index 892776900..f2799b7ac 100644 --- a/include/opcode/sparc.h +++ b/include/opcode/sparc.h @@ -111,6 +111,9 @@ typedef struct sparc_opcode #define F_JSR 0x00000010 /* Subroutine call. */ #define F_FLOAT 0x00000020 /* Floating point instruction (not a branch). */ #define F_FBR 0x00000040 /* Floating point branch. */ +#define F_PREFERRED 0x00000080 /* A preferred alias. */ + +#define F_PREF_ALIAS (F_ALIAS|F_PREFERRED) /* These must match the HWCAP_* values precisely. */ #define HWCAP_MUL32 0x00000001 /* umul/umulcc/smul/smulcc insns */