aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.se>1998-09-09 00:48:00 +0200
committerJeff Law <law@gcc.gnu.org>1998-09-08 16:48:00 -0600
commit7e24ffc9244a0ebd7184714782987b6f7628393d (patch)
treea7930603f421fd116223d1d3ca3b7b4b17fd34d2 /gcc/expr.c
parent4746e092cc59e722474ff6e87db5172276717660 (diff)
downloadgcc-7e24ffc9244a0ebd7184714782987b6f7628393d.zip
gcc-7e24ffc9244a0ebd7184714782987b6f7628393d.tar.gz
gcc-7e24ffc9244a0ebd7184714782987b6f7628393d.tar.bz2
expr.c: Corrected comment about what MOVE_RATIO does.
* expr.c: Corrected comment about what MOVE_RATIO does. * config/alpha/alpha.h: Ditto. * config/1750a/1750a.h: Ditto. * config/clipper/clipper.h: Ditto. * config/i386/i386.h: Ditto. From-SVN: r22339
Diffstat (limited to 'gcc/expr.c')
-rw-r--r--gcc/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index 0390126..dbf19ff 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -203,8 +203,8 @@ static rtx do_store_flag PROTO((tree, rtx, enum machine_mode, int));
static char direct_load[NUM_MACHINE_MODES];
static char direct_store[NUM_MACHINE_MODES];
-/* MOVE_RATIO is the number of move instructions that is better than
- a block move. */
+/* If a memory-to-memory move would take MOVE_RATIO or more simple
+ move-instruction sequences, we will do a movstr or libcall instead. */
#ifndef MOVE_RATIO
#if defined (HAVE_movstrqi) || defined (HAVE_movstrhi) || defined (HAVE_movstrsi) || defined (HAVE_movstrdi) || defined (HAVE_movstrti)