Commit 611b7b5a by Nick Clifton Committed by Nick Clifton

mn10300.h (CONSTANT_ADDRESS_P): Do not allow CONST_DOUBLEs.

        * config/mn10300/mn10300.h (CONSTANT_ADDRESS_P): Do not allow
        CONST_DOUBLEs.

From-SVN: r152551
parent 4c93ed23
2009-10-08 Nick Clifton <nickc@redhat.com>
* config/mn10300/mn10300.h (CONSTANT_ADDRESS_P): Do not allow
CONST_DOUBLEs.
2009-10-08 Andreas Tobler <a.tobler@schweiz.org>
PR bootstrap/37739
......@@ -620,7 +620,7 @@ struct cum_arg {int nbytes; };
/* 1 if X is an rtx for a constant that is a valid address. */
#define CONSTANT_ADDRESS_P(X) CONSTANT_P (X)
#define CONSTANT_ADDRESS_P(X) (CONSTANT_P (X) && GET_CODE (X) != CONST_DOUBLE)
/* Maximum number of registers that can appear in a valid memory address. */
......
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