diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-15 14:42:59 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-15 14:42:59 +0000 |
commit | 050f9ef14065d3dbb8f6b35ee85b09afa91f9700 (patch) | |
tree | b61ee243fd4d4074f2f05034f1a7304320d5f56d /gcc/function.c | |
parent | ced52ffdc0debfd077d3ac770776e67ef7ea217e (diff) | |
download | gcc-050f9ef14065d3dbb8f6b35ee85b09afa91f9700.tar.gz |
* function.c (get_arg_pointer_save_area): Set
arg_pointer_save_area_init to true.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164307 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/function.c b/gcc/function.c index 670ff80ad3c..fac8b75f3d9 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -5103,6 +5103,8 @@ get_arg_pointer_save_area (void) push_topmost_sequence (); emit_insn_after (seq, entry_of_function ()); pop_topmost_sequence (); + + crtl->arg_pointer_save_area_init = true; } return ret; |