diff options
author | YamaArashi <shadow962@live.com> | 2016-02-14 18:43:19 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-14 18:43:19 -0800 |
commit | 7aeb8da2138f7521a78d377343b3a266e1e6f9d6 (patch) | |
tree | 8d1f73d3b850609a2152ce86719c68177558aef9 /gcc/function.c | |
parent | 9e217b935f6df9afa8e8fbad9c5c6401b879e54a (diff) |
remove delay slot and stack reg code
Diffstat (limited to 'gcc/function.c')
-rwxr-xr-x | gcc/function.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/function.c b/gcc/function.c index 6e37df4..10f8760 100755 --- a/gcc/function.c +++ b/gcc/function.c @@ -4298,16 +4298,6 @@ assign_parms (fndecl, second_time) } #endif /* 0 */ -#ifdef STACK_REGS - /* We need this "use" info, because the gcc-register->stack-register - converter in reg-stack.c needs to know which registers are active - at the start of the function call. The actual parameter loading - instructions are not always available then anymore, since they might - have been optimised away. */ - - if (GET_CODE (entry_parm) == REG && !(hide_last_arg && last_named)) - emit_insn (gen_rtx_USE (GET_MODE (entry_parm), entry_parm)); -#endif /* ENTRY_PARM is an RTX for the parameter as it arrives, in the mode in which it arrives. |