diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/sparc/sparc.md | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d941dc1..101e244 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-03-18 Eric Botcazou <ebotcazou@adacore.com> + + PR target/35180 + * config/sparc/sparc.md (do_builtin_setjmp_setup): Prettify asm output. + 2009-03-18 Sandra Loosemore <sandra@codesourcery.com> * doc/invoke.texi (Code Gen Options): Expand discussion of diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index d78d6e9..e5098a5 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -7082,10 +7082,10 @@ [(unspec_volatile [(const_int 0)] UNSPECV_SETJMP)] "" { - if (! cfun->calls_alloca) + if (!cfun->calls_alloca) return ""; - if (! TARGET_V9) - return "\tta\t3\n"; + if (!TARGET_V9) + return "ta\t3"; fputs ("\tflushw\n", asm_out_file); if (flag_pic) fprintf (asm_out_file, "\tst%c\t%%l7, [%%sp+%d]\n", |
