diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2000-10-26 09:50:34 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2000-10-26 09:50:34 +0000 |
commit | 13c6f0d5b3a61f3ec7dfb0a38fbe02f0cf24f75b (patch) | |
tree | 106754ce3485da2d53812a3bdf883f2aa462ffaa /gcc/expr.c | |
parent | 95faa9a15e04b7a929c2b9f72b758bd5dcedba9b (diff) | |
download | gcc-13c6f0d5b3a61f3ec7dfb0a38fbe02f0cf24f75b.zip gcc-13c6f0d5b3a61f3ec7dfb0a38fbe02f0cf24f75b.tar.gz gcc-13c6f0d5b3a61f3ec7dfb0a38fbe02f0cf24f75b.tar.bz2 |
tree.c (make_node, case 't'): Set alignment to that of char_type_node.
* tree.c (make_node, case 't'): Set alignment to that of
char_type_node.
* expr.c (move_by_pieces_ninsns): Abort if some length remains.
From-SVN: r37071
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1536,6 +1536,8 @@ move_by_pieces_ninsns (l, align) max_size = GET_MODE_SIZE (mode); } + if (l) + abort (); return n_insns; } |