* mn10300.c (MODES_TIEABLE_P): Fix typo.

From-SVN: r21249
This commit is contained in:
Jeffrey A Law 1998-07-17 10:53:58 +00:00 committed by Jeff Law
parent c5a6fc4557
commit 2fed503d0e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri Jul 17 11:48:55 1998 Jeffrey A Law (law@cygnus.com)
* mn10300.c (MODES_TIEABLE_P): Fix typo.
Fri Jul 17 03:26:12 1998 Rihcard Earnshaw (rearnsha@arm.com)
* tree.c (valid_machine_attribute): Only create a new type variant if

View File

@ -182,7 +182,7 @@ extern struct rtx_def *zero_areg;
If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
for any hard reg, then this must be 0 for correct output. */
#define MODES_TIEABLE_P(MODE1, MODE2) \
(MODE1 == MODE2 || GET_MODE_SIZE (MODE1) <= 4 && GET_MODE_SIZE (MODE2) <= 4)
(MODE1 == MODE2 || (GET_MODE_SIZE (MODE1) <= 4 && GET_MODE_SIZE (MODE2) <= 4))
/* 4 data, and effectively 3 address registers is small as far as I'm
concerned. */