]> gcc.gnu.org Git - gcc.git/commitdiff
tm.texi: Change STRUCT_FORCE_BLK to MEMBER_TYPE_FORCES_BLK.
authorJ"orn Rennecke <amylaar@redhat.com>
Sat, 3 Mar 2001 03:53:44 +0000 (03:53 +0000)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Sat, 3 Mar 2001 03:53:44 +0000 (03:53 +0000)
* tm.texi: Change STRUCT_FORCE_BLK to MEMBER_TYPE_FORCES_BLK.
* config/c4x/c4x.h: Likewise.
* stor-layout.c (compute_record_mode): Likewise.
(layout_type, case ARRAY_TYPE): Use MEMBER_TYPE_FORCES_BLK.

From-SVN: r40200

gcc/ChangeLog
gcc/config/c4x/c4x.h
gcc/stor-layout.c
gcc/tm.texi

index 3dc3f1965246fd49990227dce337c44b5fb339da..37f188048d210684b3de05d1cc69ae7461b438a1 100644 (file)
@@ -1,3 +1,10 @@
+Sat Mar  3 03:46:47 2001  J"orn Rennecke <amylaar@redhat.com>
+
+       * tm.texi: Change STRUCT_FORCE_BLK to MEMBER_TYPE_FORCES_BLK.
+       * config/c4x/c4x.h: Likewise.
+       * stor-layout.c (compute_record_mode): Likewise.
+       (layout_type, case ARRAY_TYPE): Use MEMBER_TYPE_FORCES_BLK.
+
 2001-03-02  Zack Weinberg  <zackw@stanford.edu>
 
        * configure.in: Kill tm.h.  Include the files in the $tm_file
index 4250bf55702040abdc7c4bbd7f6069cfbc4ef44a..72155650c9873e1f3ab9baeaddd8d90474ba2ca3 100644 (file)
@@ -370,7 +370,8 @@ extern const char *c4x_rpts_cycles_string, *c4x_cpu_version_string;
 
 /* If a structure has a floating point field then force structure
    to have BLKMODE.  */
-#define STRUCT_FORCE_BLK(FIELD) (TREE_CODE (TREE_TYPE (FIELD)) == REAL_TYPE)
+#define MEMBER_TYPE_FORCES_BLK(FIELD) \
+  (TREE_CODE (TREE_TYPE (FIELD)) == REAL_TYPE)
 
 /* Number of bits in the high and low parts of a two stage
    load of an immediate constant.  */
index 065d4f61201ba70d14c953b9bcb22631dd6e7a06..152eff10f36aab7218aa61c088233b378c8b5b26 100644 (file)
@@ -1111,12 +1111,12 @@ compute_record_mode (type)
       if (simple_cst_equal (TYPE_SIZE (type), DECL_SIZE (field)))
        mode = DECL_MODE (field);
 
-#ifdef STRUCT_FORCE_BLK
+#ifdef MEMBER_TYPE_FORCES_BLK
       /* With some targets, eg. c4x, it is sub-optimal
         to access an aligned BLKmode structure as a scalar.  */
-      if (mode == VOIDmode && STRUCT_FORCE_BLK (field))
+      if (mode == VOIDmode && MEMBER_TYPE_FORCES_BLK (field))
        return;
-#endif /* STRUCT_FORCE_BLK  */
+#endif /* MEMBER_TYPE_FORCES_BLK  */
     }
 
   /* If we only have one real field; use its mode.  This only applies to
@@ -1450,6 +1450,9 @@ layout_type (type)
 
        TYPE_MODE (type) = BLKmode;
        if (TYPE_SIZE (type) != 0
+#ifdef MEMBER_TYPE_FORCES_BLK
+           && ! MEMBER_TYPE_FORCES_BLK (type)
+#endif
            /* BLKmode elements force BLKmode aggregate;
               else extract/store fields may lose.  */
            && (TYPE_MODE (TREE_TYPE (type)) != BLKmode
index 286e30f957d61e0f635278ca8fe25a71fc65b251..9f20053e07d12417c7219037e0ba551a28230810 100644 (file)
@@ -1118,9 +1118,9 @@ get from @code{PCC_BITFIELD_TYPE_MATTERS}.
 Like PCC_BITFIELD_TYPE_MATTERS except that its effect is limited to
 aligning a bitfield within the structure.
 
-@findex STRUCT_FORCE_BLK
-@item STRUCT_FORCE_BLK (@var{field})
-Return 1 if a structure containing @var{field} should be accessed using
+@findex MEMBER_TYPE_FORCES_BLK
+@item MEMBER_TYPE_FORCES_BLK (@var{field})
+Return 1 if a structure or array containing @var{field} should be accessed using
 @code{BLKMODE}.
 
 Normally, this is not needed.  See the file @file{c4x.h} for an example
This page took 0.090753 seconds and 5 git commands to generate.