diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-13 08:22:03 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-13 08:22:03 +0000 |
commit | cc9b8628228057b9b0ab5417b7d8deea36754e44 (patch) | |
tree | 9ce1ffbe5f574651dfe2baa17807ad50e4394b8d /gcc/expr.h | |
parent | 0336f0f0a448f834556a8efb0cf4161c2e2a38d2 (diff) | |
download | gcc-cc9b8628228057b9b0ab5417b7d8deea36754e44.tar.gz |
* function.c (pass_by_reference): New.
(assign_parm_find_data_types): Use it.
* calls.c (initialize_argument_information): Likewise.
(emit_library_call_value_1): Likewise.
* expr.h (FUNCTION_ARG_PASS_BY_REFERENCE): Remove.
* function.h (pass_by_reference): Declare.
ada/
* misc.c (default_pass_by_ref): Use pass_by_reference.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84607 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index 687b6e3943f..9a50410131e 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -207,10 +207,6 @@ do { \ #define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) 0 #endif -#ifndef FUNCTION_ARG_PASS_BY_REFERENCE -#define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) 0 -#endif - #ifndef FUNCTION_ARG_CALLEE_COPIES #define FUNCTION_ARG_CALLEE_COPIES(CUM, MODE, TYPE, NAMED) 0 #endif |