(move_by_pieces): Abort only if length positive at end.
authorRichard Kenner <kenner@gcc.gnu.org>
Sat, 7 Dec 1996 23:48:44 +0000 (18:48 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Sat, 7 Dec 1996 23:48:44 +0000 (18:48 -0500)
From-SVN: r13242

gcc/expr.c

index 3e0a88be0a11243a37e3dafcc2ad495fe4f1d8d7..595d13198c7015726f187ad1643071be4fdf43c4 100644 (file)
@@ -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 ();
 }