Commit 436bcda1 by Geoffrey Keating Committed by Geoffrey Keating

expr.c (MOVE_MAX_PIECES): Move from here...

	* expr.c (MOVE_MAX_PIECES): Move from here...
	* defaults.h (MOVE_MAX_PIECES): ... to here.

From-SVN: r69118
parent 6f3fcc0b
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> 2003-07-08 Matt Kraai <kraai@alumni.cmu.edu>
* Makefile.in (stage1-start): Handle an empty SUBDIRS. * Makefile.in (stage1-start): Handle an empty SUBDIRS.
......
...@@ -664,4 +664,15 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE! ...@@ -664,4 +664,15 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE!
#define STORE_FLAG_VALUE 1 #define STORE_FLAG_VALUE 1
#endif #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 */ #endif /* ! GCC_DEFAULTS_H */
...@@ -1425,17 +1425,6 @@ convert_modes (enum machine_mode mode, enum machine_mode oldmode, rtx x, int uns ...@@ -1425,17 +1425,6 @@ convert_modes (enum machine_mode mode, enum machine_mode oldmode, rtx x, int uns
return temp; return temp;
} }
/* 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_MAX_PIECES is the number of bytes at a time that we can
store efficiently. Due to internal GCC limitations, this is store efficiently. Due to internal GCC limitations, this is
MOVE_MAX_PIECES limited by the number of bytes GCC can represent MOVE_MAX_PIECES limited by the number of bytes GCC can represent
......
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