OSDN Git Service

* config/v850/v850.h (ENCODE_SECTION_INFO): Change order
authorclm <clm@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 26 Jul 2001 15:42:54 +0000 (15:42 +0000)
committerclm <clm@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 26 Jul 2001 15:42:54 +0000 (15:42 +0000)
        of conditional to avoid tree checking errors.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44400 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/v850/v850.h

index 431fcff..b811eb4 100644 (file)
@@ -1,3 +1,8 @@
+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
index 9d2b260..fae5c16 100644 (file)
@@ -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 '@'