diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-09 06:06:18 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-09 06:06:18 +0000 |
| commit | e681d0a0285c6fa796c8db41247f9dd28cdd04cb (patch) | |
| tree | cea4e5733d6a774131710653e32ceed5495766fe | |
| parent | d18a3f6d9aa1c6696795363ec76d93c34bf8453c (diff) | |
| download | ppe42-gcc-e681d0a0285c6fa796c8db41247f9dd28cdd04cb.tar.gz ppe42-gcc-e681d0a0285c6fa796c8db41247f9dd28cdd04cb.zip | |
* config/ia64/ia64.c (ia64_direct_return): Require frame size zero.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33788 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/config/ia64/ia64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c index e563d025ad3..da5aaa3f405 100644 --- a/gcc/config/ia64/ia64.c +++ b/gcc/config/ia64/ia64.c @@ -1146,7 +1146,7 @@ int ia64_direct_return () { return (reload_completed && ! frame_pointer_needed - && ia64_compute_frame_size (get_frame_size ())); + && ia64_compute_frame_size (get_frame_size ()) == 0); } |

