diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-07-12 13:10:25 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-07-12 13:10:25 -0400 |
commit | 0f56a4031391a7a97f59823373f3b52378e6ddc6 (patch) | |
tree | 4dfb08ed8716eb1110618ad3a5168a39fe4fed91 /gcc/explow.c | |
parent | 67e23d2f5c3d4492681544bf4b1dbee5f8e1dc7a (diff) | |
download | gcc-0f56a4031391a7a97f59823373f3b52378e6ddc6.zip gcc-0f56a4031391a7a97f59823373f3b52378e6ddc6.tar.gz gcc-0f56a4031391a7a97f59823373f3b52378e6ddc6.tar.bz2 |
(allocate_dynamic_stack_space): Fix typo.
From-SVN: r7746
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 0d24453..1c94b81 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -1059,7 +1059,7 @@ allocate_dynamic_stack_space (size, target, known_align) { /* CEIL_DIV_EXPR needs to worry about the addition overflowing, but we know it can't. So add ourselves and then do TRUNC_DIV_EXPR. */ - target = expand_binop (Pmode, add_opatab, target, + target = expand_binop (Pmode, add_optab, target, GEN_INT (BIGGEST_ALIGNMENT / BITS_PER_UNIT - 1), NULL_RTX, 1, OPTAB_LIB_WIDEN); target = expand_divmod (0, TRUNC_DIV_EXPR, Pmode, target, |