mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-29 03:44:49 +08:00
(move_by_pieces): Abort only if length positive at end.
From-SVN: r13242
This commit is contained in:
parent
9f3c45fd62
commit
2a8e278c94
@ -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 ();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user