Commit 06e937ed by Catherine Moore Committed by Catherine Moore

v850.h (ENCODE_SECTION_INFO): Change order of conditional to avoid tree checking errors.

        * config/v850/v850.h (ENCODE_SECTION_INFO):  Change order
        of conditional to avoid tree checking errors.

From-SVN: r44400
parent f3029065
2001-07-26 Catherine Moore <clm@redhat.com>
* config/v850/v850.h (ENCODE_SECTION_INFO): Change order
of conditional to avoid tree checking errors.
2001-07-26 Kazu Hirata <kazu@hxi.com>
* regmove.c (regmove_optimize): Don't replace a reg with
......
......@@ -1569,13 +1569,13 @@ extern union tree_node * GHS_current_section_names [(int) COUNT_OF_GHS_SECTION_K
#define EP_REGNUM 30 /* ep register number */
#define ENCODE_SECTION_INFO(DECL) \
do \
{ \
if ((TREE_STATIC (DECL) || DECL_EXTERNAL (DECL)) \
&& TREE_CODE (DECL) == VAR_DECL) \
v850_encode_data_area (DECL); \
} \
#define ENCODE_SECTION_INFO(DECL) \
do \
{ \
if (TREE_CODE (DECL) == VAR_DECL \
&& (TREE_STATIC (DECL) || DECL_EXTERNAL (DECL))) \
v850_encode_data_area (DECL); \
} \
while (0)
#define ZDA_NAME_FLAG_CHAR '@'
......
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