expr.c (MOVE_MAX_PIECES): Move from here...
authorGeoffrey Keating <geoffk@apple.com>
Wed, 9 Jul 2003 00:58:58 +0000 (00:58 +0000)
committerGeoffrey Keating <geoffk@gcc.gnu.org>
Wed, 9 Jul 2003 00:58:58 +0000 (00:58 +0000)
* expr.c (MOVE_MAX_PIECES): Move from here...
* defaults.h (MOVE_MAX_PIECES): ... to here.

From-SVN: r69118

gcc/ChangeLog
gcc/defaults.h
gcc/expr.c

index b76684b902b520ba2969cf8fbd91019b31f2ae95..2d68c4139cb2c88ff09bc9f10acd7267c6c25a45 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-08  Geoffrey Keating  <geoffk@apple.com>
+
+       * expr.c (MOVE_MAX_PIECES): Move from here...
+       * defaults.h (MOVE_MAX_PIECES): ... to here.
+
 2003-07-08  Matt Kraai  <kraai@alumni.cmu.edu>
 
        * Makefile.in (stage1-start): Handle an empty SUBDIRS.
index 20dc172faa43f629c2994f8cf6294d9a80d6ed5c..b968ea645ebd9c6e1240f0c621c2f60b1b29dbdc 100644 (file)
@@ -664,4 +664,15 @@ You Lose!  You must define PREFERRED_DEBUGGING_TYPE!
 #define STORE_FLAG_VALUE  1
 #endif
 
+/* This macro is used to determine what the largest unit size that
+   move_by_pieces can use is.  */
+
+/* MOVE_MAX_PIECES is the number of bytes at a time which we can
+   move efficiently, as opposed to  MOVE_MAX which is the maximum
+   number of bytes we can move with a single instruction.  */
+
+#ifndef MOVE_MAX_PIECES
+#define MOVE_MAX_PIECES   MOVE_MAX
+#endif
+
 #endif  /* ! GCC_DEFAULTS_H */
index 87ada15337e016cb05ca3915628dbfefbd57ded6..6a3005857161f7702cf95b831711afb0d7c3d230 100644 (file)
@@ -1425,17 +1425,6 @@ convert_modes (enum machine_mode mode, enum machine_mode oldmode, rtx x, int uns
   return temp;
 }
 \f
-/* This macro is used to determine what the largest unit size that
-   move_by_pieces can use is.  */
-
-/* MOVE_MAX_PIECES is the number of bytes at a time which we can
-   move efficiently, as opposed to  MOVE_MAX which is the maximum
-   number of bytes we can move with a single instruction.  */
-
-#ifndef MOVE_MAX_PIECES
-#define MOVE_MAX_PIECES   MOVE_MAX
-#endif
-
 /* STORE_MAX_PIECES is the number of bytes at a time that we can
    store efficiently.  Due to internal GCC limitations, this is
    MOVE_MAX_PIECES limited by the number of bytes GCC can represent