diff options
author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-10 00:41:39 +0000 |
---|---|---|
committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-10 00:41:39 +0000 |
commit | 9a27561fb113a16c47844119231b5edfa6b13c01 (patch) | |
tree | 735fd06cfce1ffc7f37782aff0f57f0032845332 /gcc/calls.c | |
parent | 28cdd02864a5ad8c155ff32c0d8d230eb83322f1 (diff) | |
download | gcc-9a27561fb113a16c47844119231b5edfa6b13c01.tar.gz |
2008-05-09 H.J. Lu <hongjiu.lu@intel.com>
* calls.c (expand_call): Don't use callgraph to increase
preferred_stack_boundary.
* cgraph.h (cgraph_rtl_info): Use unsigned on
preferred_incoming_stack_boundary.
* final.c (rest_of_clean_state): Use unsigned on
preferred_stack_boundary.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135134 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index bbb9b769c49..ac839827125 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -2109,7 +2109,14 @@ expand_call (tree exp, rtx target, int ignore) if (fndecl) { struct cgraph_rtl_info *i = cgraph_rtl_info (fndecl); - if (i && i->preferred_incoming_stack_boundary) + /* Without automatic stack alignment, we can't increase preferred + stack boundary. With automatic stack alignment, it is + unnecessary since unless we can guarantee that all callers will + align the outgoing stack properly, callee has to align its + stack anyway. */ + if (i + && i->preferred_incoming_stack_boundary + && i->preferred_incoming_stack_boundary < preferred_stack_boundary) preferred_stack_boundary = i->preferred_incoming_stack_boundary; } |