mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-11 01:30:55 +08:00
(GIV_SORT_CRITERION): Define.
From-SVN: r11669
This commit is contained in:
parent
7027f90aba
commit
a8d762e1d2
@ -1589,5 +1589,13 @@ extern int pragma_interrupt;
|
||||
|
||||
/* ??? Define ADJUST_COSTS? */
|
||||
|
||||
/* Since the SH architecture lacks negative address offsets,
|
||||
the givs should be sorted smallest to largest so combine_givs
|
||||
has maximum opportunity to combine givs. */
|
||||
#define GIV_SORT_CRITERION(X, Y) \
|
||||
if (GET_CODE ((X)->add_val) == CONST_INT \
|
||||
&& GET_CODE ((Y)->add_val) == CONST_INT) \
|
||||
return INTVAL ((X)->add_val) - INTVAL ((Y)->add_val);
|
||||
|
||||
/* For the sake of libgcc2.c, indicate target supports atexit. */
|
||||
#define HAVE_ATEXIT
|
||||
|
Loading…
x
Reference in New Issue
Block a user