summaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-12-07 18:48:44 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1996-12-07 18:48:44 -0500
commit2a8e278c94d800022aa097bbae2eb65ed66811c9 (patch)
tree4a15f80e0ead156284b2f5af878453c4c6196d3e /gcc/expr.c
parent9f3c45fd6284d60ad31ffa61495005f5302e822c (diff)
downloadgcc-2a8e278c94d800022aa097bbae2eb65ed66811c9.tar.gz
(move_by_pieces): Abort only if length positive at end.
From-SVN: r13242
Diffstat (limited to 'gcc/expr.c')
-rw-r--r--gcc/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index 3e0a88be0a1..595d13198c7 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -1463,7 +1463,7 @@ move_by_pieces (to, from, len, align)
}
/* The code above should have handled everything. */
- if (data.len != 0)
+ if (data.len > 0)
abort ();
}