diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2007-01-18 19:52:51 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2007-01-18 19:52:51 +0000 |
commit | dfd050746b226f24b1e4ae35ad06d71ecd77bd04 (patch) | |
tree | d645fb856608db7e0ae1322e715094e15d9f434f | |
parent | 413ac1b28d3047fca4931f002ffa5a5dded32a2c (diff) | |
download | gcc-dfd050746b226f24b1e4ae35ad06d71ecd77bd04.zip gcc-dfd050746b226f24b1e4ae35ad06d71ecd77bd04.tar.gz gcc-dfd050746b226f24b1e4ae35ad06d71ecd77bd04.tar.bz2 |
200x-xx-xx Kazu Hirata <kazu@codesourcery.com>
gcc/
200x-xx-xx Kazu Hirata <kazu@codesourcery.com>
* config/m68k/m68k.c (m68k_output_function_epilogue): Don't
output a NOP for empty epilogues.
From-SVN: r120928
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/m68k/m68k.c | 7 |
2 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f7d4ef0..102078d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-01-18 Kazu Hirata <kazu@codesourcery.com> + + * config/m68k/m68k.c (m68k_output_function_epilogue): Don't + output a NOP for empty epilogues. + 2007-01-18 Richard Sandiford <richard@codesourcery.com> * config/m68k/m68k.c (m68k_use_return_insn): Update comments diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index a2f9f01..41f61c7 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -1055,12 +1055,7 @@ m68k_output_function_epilogue (FILE *stream, if (GET_CODE (insn) == NOTE) insn = prev_nonnote_insn (insn); if (insn && GET_CODE (insn) == BARRIER) - { - /* Output just a no-op so that debuggers don't get confused - about which function the pc is in at this address. */ - fprintf (stream, "\tnop\n"); - return; - } + return; #ifdef FUNCTION_EXTRA_EPILOGUE FUNCTION_EXTRA_EPILOGUE (stream, size); |