Commit b9397bb4 by Bob Wilson Committed by Bob Wilson

xtensa.h (LEGITIMATE_PIC_OPERAND_P): Use SYMBOL_REF_LOCAL_P.

	* config/xtensa/xtensa.h (LEGITIMATE_PIC_OPERAND_P): Use
	SYMBOL_REF_LOCAL_P.

From-SVN: r71411
parent a4cbdc57
2003-09-15 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/xtensa.h (LEGITIMATE_PIC_OPERAND_P): Use
SYMBOL_REF_LOCAL_P.
2003-09-15 Kazu Hirata <kazu@cs.umass.edu>
* expr.h (DEFAULT_FUNCTION_ARG_PADDING): New.
......
......@@ -1102,7 +1102,7 @@ typedef struct xtensa_args {
operand on the target machine when generating position independent
code. */
#define LEGITIMATE_PIC_OPERAND_P(X) \
((GET_CODE (X) != SYMBOL_REF || SYMBOL_REF_FLAG (X)) \
((GET_CODE (X) != SYMBOL_REF || SYMBOL_REF_LOCAL_P (X)) \
&& GET_CODE (X) != LABEL_REF \
&& GET_CODE (X) != CONST)
......
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