From: Richard Kenner Date: Sat, 7 Dec 1996 23:48:44 +0000 (-0500) Subject: (move_by_pieces): Abort only if length positive at end. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2a8e278c94d800022aa097bbae2eb65ed66811c9;p=gcc.git (move_by_pieces): Abort only if length positive at end. From-SVN: r13242 --- 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 (); }