Commit c991649c by Jeff Law Committed by Jeff Law

* h8300.h (OK_FOR_U): Fix thinko exposed by flag checking.

From-SVN: r54323
parent 28038fe1
2002-06-06 Jeffrey Law <law@redhat.com>
* h8300.h (OK_FOR_U): Fix thinko exposed by flag checking.
Thu Jun 6 21:06:25 2002 J"orn Rennecke <joern.rennecke@superh.com>
* gengtype-lex.l (INITIAL): New rule for "'"("\\".|[^\\])"'".
......
......@@ -858,7 +858,8 @@ struct cum_arg
&& GET_CODE (XEXP (XEXP (OP, 0), 0)) == PLUS \
&& GET_CODE (XEXP (XEXP (XEXP (OP, 0), 0), 0)) == SYMBOL_REF \
&& GET_CODE (XEXP (XEXP (XEXP (OP, 0), 0), 1)) == CONST_INT) \
&& (TARGET_H8300S || SYMBOL_REF_FLAG (XEXP (XEXP (OP, 0), 0)))) \
&& (TARGET_H8300S \
|| SYMBOL_REF_FLAG (XEXP (XEXP (XEXP (OP, 0), 0), 0)))) \
|| (GET_CODE (OP) == MEM \
&& EIGHTBIT_CONSTANT_ADDRESS_P (XEXP (OP, 0))) \
|| (GET_CODE (OP) == MEM && TARGET_H8300S \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment