Commit ca0c7991 by Richard Kenner

(CONSTANT_ADDRESS_P): Provide consistent definition.

From-SVN: r9238
parent dec5c86b
...@@ -1091,10 +1091,10 @@ extern char *a29k_function_name; ...@@ -1091,10 +1091,10 @@ extern char *a29k_function_name;
/* Maximum number of registers that can appear in a valid memory address. */ /* Maximum number of registers that can appear in a valid memory address. */
#define MAX_REGS_PER_ADDRESS 1 #define MAX_REGS_PER_ADDRESS 1
/* Recognize any constant value that is a valid address. /* Recognize any constant value that is a valid address. */
None are on the 29K. */ #define CONSTANT_ADDRESS_P(X) \
#define CONSTANT_ADDRESS_P(X) 0 (GET_CODE (X) == CONST_INT && (unsigned) INTVAL (X) < 0x100)
/* Include all constant integers and constant doubles */ /* Include all constant integers and constant doubles */
#define LEGITIMATE_CONSTANT_P(X) 1 #define LEGITIMATE_CONSTANT_P(X) 1
......
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