aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2000-10-26 09:50:34 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2000-10-26 09:50:34 +0000
commit13c6f0d5b3a61f3ec7dfb0a38fbe02f0cf24f75b (patch)
tree106754ce3485da2d53812a3bdf883f2aa462ffaa /gcc/expr.c
parent95faa9a15e04b7a929c2b9f72b758bd5dcedba9b (diff)
downloadgcc-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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index 06aebb6..d12f0a2 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -1536,6 +1536,8 @@ move_by_pieces_ninsns (l, align)
max_size = GET_MODE_SIZE (mode);
}
+ if (l)
+ abort ();
return n_insns;
}