mirror of git://gcc.gnu.org/git/gcc.git
* config/mips/mips.h (CLZ_DEFINED_VALUE_AT_ZERO): Define.
From-SVN: r101997
This commit is contained in:
parent
df1f6f31f4
commit
09d8cc0ee0
|
@ -1,3 +1,7 @@
|
||||||
|
2005-07-13 Ian Lance Taylor <ian@airs.com>
|
||||||
|
|
||||||
|
* config/mips/mips.h (CLZ_DEFINED_VALUE_AT_ZERO): Define.
|
||||||
|
|
||||||
2005-07-14 Jan Hubicka <jh@suse.cz>
|
2005-07-14 Jan Hubicka <jh@suse.cz>
|
||||||
|
|
||||||
* tree-dfa.c (dump_variable): Use default_def function.
|
* tree-dfa.c (dump_variable): Use default_def function.
|
||||||
|
|
|
@ -1130,6 +1130,11 @@ extern const struct mips_rtx_cost_data *mips_cost;
|
||||||
|
|
||||||
/* Define if loading short immediate values into registers sign extends. */
|
/* Define if loading short immediate values into registers sign extends. */
|
||||||
#define SHORT_IMMEDIATES_SIGN_EXTEND
|
#define SHORT_IMMEDIATES_SIGN_EXTEND
|
||||||
|
|
||||||
|
/* The [d]clz instructions have the natural values at 0. */
|
||||||
|
|
||||||
|
#define CLZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) \
|
||||||
|
((VALUE) = GET_MODE_BITSIZE (MODE), true)
|
||||||
|
|
||||||
/* Standard register usage. */
|
/* Standard register usage. */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue