projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b8aa798
)
(output_function_{pro,epi}logue): Use lea instead of add.w when
author
Richard Kenner
<kenner@gcc.gnu.org>
Tue, 10 Dec 1996 22:36:39 +0000
(17:36 -0500)
committer
Richard Kenner
<kenner@gcc.gnu.org>
Tue, 10 Dec 1996 22:36:39 +0000
(17:36 -0500)
adjusting stack pointer on all but TARGET_68040.
From-SVN: r13266
gcc/config/m68k/m68k.c
patch
|
blob
|
history
diff --git
a/gcc/config/m68k/m68k.c
b/gcc/config/m68k/m68k.c
index 7a8f98b0e8efca018ffbd71b965629548f882070..c671c5987e550f9227e19bde47370b68633e0325 100644
(file)
--- a/
gcc/config/m68k/m68k.c
+++ b/
gcc/config/m68k/m68k.c
@@
-214,7
+214,7
@@
output_function_prologue (stream, size)
/* Adding negative number is faster on the 68040. */
if (fsize + 4 < 0x8000)
{
- if (
TARGET_520
0)
+ if (
!TARGET_6804
0)
{
#ifdef MOTOROLA
asm_fprintf (stream, "\tlea (%d,%Rsp),%Rsp\n", - (fsize + 4));
@@
-642,7
+642,7
@@
output_function_epilogue (stream, size)
{
if (fsize + 4 < 0x8000)
{
- if (
TARGET_520
0)
+ if (
!TARGET_6804
0)
{
#ifdef MOTOROLA
asm_fprintf (stream, "\tlea (%d,%Rsp),%Rsp\n", fsize + 4);