diff options
| author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-18 19:52:51 +0000 |
|---|---|---|
| committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-18 19:52:51 +0000 |
| commit | fbb404bfc90fb100fe8c2a0cea7750c422fa29d8 (patch) | |
| tree | d645fb856608db7e0ae1322e715094e15d9f434f | |
| parent | 6571ac6e6dfb5f0953c9f7f7c55d448f609d099b (diff) | |
| download | ppe42-gcc-fbb404bfc90fb100fe8c2a0cea7750c422fa29d8.tar.gz ppe42-gcc-fbb404bfc90fb100fe8c2a0cea7750c422fa29d8.zip | |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120928 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 f7d4ef0aa56..102078dcb5d 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 a2f9f015c87..41f61c74b2c 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); |

