diff options
| author | wehle <wehle@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-22 19:25:05 +0000 |
|---|---|---|
| committer | wehle <wehle@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-22 19:25:05 +0000 |
| commit | dedcedfe062fd5a9d16d04d54a0d376ae3e6c708 (patch) | |
| tree | 4e75f5a28a49e5e485fecbb4dd690a34cb3cbe0d | |
| parent | caa3fa6323f7cf61a9b769578282d9b6bcd0adbe (diff) | |
| download | ppe42-gcc-dedcedfe062fd5a9d16d04d54a0d376ae3e6c708.tar.gz ppe42-gcc-dedcedfe062fd5a9d16d04d54a0d376ae3e6c708.zip | |
* toplev.c (rest_of_compilation): Always set
current_function_uses_only_leaf_regs appropriately.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26589 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/toplev.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d06e558ddc8..006cfeb58d5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Apr 22 22:22:15 EDT 1999 John Wehle (john@feith.com) + + * toplev.c (rest_of_compilation): Always set + current_function_uses_only_leaf_regs appropriately. + Thu Apr 22 14:39:43 1999 Mumit Khan <khan@xraylith.wisc.edu> * i386/xm-cygwin.h (HAVE_BCOPY): Delete unneeded macro. diff --git a/gcc/toplev.c b/gcc/toplev.c index 7b3c31c92bd..a9de70209f7 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -4240,8 +4240,8 @@ rest_of_compilation (decl) } #ifdef LEAF_REGISTERS - if (optimize > 0 && only_leaf_regs_used () && leaf_function_p ()) - current_function_uses_only_leaf_regs = 1; + current_function_uses_only_leaf_regs + = optimize > 0 && only_leaf_regs_used () && leaf_function_p (); #endif /* One more attempt to remove jumps to .+1 |

