Commit c482a651 by Kai Tietz Committed by Kai Tietz

i386.md (simple_return): Disable if TARGET_SEH is active.

        * config/i386/i386.md (simple_return): Disable
        if TARGET_SEH is active.

From-SVN: r179860
parent ccea4a27
2011-10-12 Kai Tietz <ktietz@redhat.com>
* config/i386/i386.md (simple_return): Disable
if TARGET_SEH is active.
2011-10-12 Steve Ellcey <sje@cup.hp.com> 2011-10-12 Steve Ellcey <sje@cup.hp.com>
* config/ia64/ia64.c (ia64_init_builtins): Fix unbalanced parentheses. * config/ia64/ia64.c (ia64_init_builtins): Fix unbalanced parentheses.
...@@ -11708,9 +11708,13 @@ ...@@ -11708,9 +11708,13 @@
} }
}) })
;; We need to disable this for TARGET_SEH, as otherwise
;; shrink-wrapped prologue gets enabled too. This might exceed
;; the maximum size of prologue in unwind information.
(define_expand "simple_return" (define_expand "simple_return"
[(simple_return)] [(simple_return)]
"" "!TARGET_SEH"
{ {
if (crtl->args.pops_args) if (crtl->args.pops_args)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment