diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-01-19 16:26:42 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-01-19 16:26:42 +0000 |
commit | a144af6c5a5f30a92750a5da9729ce680e1054a0 (patch) | |
tree | 5584344378e78ad74de5e99d73adbe2ed4c7447d /gnu/egcs/gcc/function.c | |
parent | df2a34902b4aa73b54581f227c58a3ca95b37318 (diff) |
Inane conflicts:
- patch to function.c was badly indented.
- invoke.texi no longer need to special-case OpenBSD, as 2.95.2 turns
strict-aliasing off everywhere.
Diffstat (limited to 'gnu/egcs/gcc/function.c')
-rw-r--r-- | gnu/egcs/gcc/function.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/egcs/gcc/function.c b/gnu/egcs/gcc/function.c index d2cf4c2edfb..5592e482e2f 100644 --- a/gnu/egcs/gcc/function.c +++ b/gnu/egcs/gcc/function.c @@ -1031,9 +1031,9 @@ assign_stack_temp_for_type (mode, size, keep, type) if (mode == BLKmode && align < BIGGEST_ALIGNMENT) abort(); p->slot = assign_stack_local (mode, - (mode == BLKmode - ? CEIL_ROUND (size, align / BITS_PER_UNIT) - : size), + (mode == BLKmode + ? CEIL_ROUND (size, align / BITS_PER_UNIT) + : size), align); p->align = align; |