diff options
author | Nick Clifton <nickc@cambridge.redhat.com> | 2002-06-19 10:00:42 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2002-06-19 10:00:42 +0000 |
commit | 099bd6563c90f4759e80cd3b91fcba131912e0aa (patch) | |
tree | fefeef9644d17050cbebe9db402206f6af39c591 /gcc | |
parent | 00cc20a54906f335a955bfc0e1220bb20f4d38ba (diff) | |
download | gcc-099bd6563c90f4759e80cd3b91fcba131912e0aa.zip gcc-099bd6563c90f4759e80cd3b91fcba131912e0aa.tar.gz gcc-099bd6563c90f4759e80cd3b91fcba131912e0aa.tar.bz2 |
(CUMULATIVE_ARGS): Replace typedef with #define.
From-SVN: r54779
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/d30v/d30v.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 327cc7c..bc5666a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-19 Nick Clifton <nickc@cambridge.redhat.com> + + * config/d30v/d30v.h (CUMULATIVE_ARGS): Replace typedef with + #define. + 2002-06-19 Neil Booth <neil@daikokuya.co.uk> * cpphash.h (struct cpp_reader): Make date and time strings. diff --git a/gcc/config/d30v/d30v.h b/gcc/config/d30v/d30v.h index 680f7c1..a669e34 100644 --- a/gcc/config/d30v/d30v.h +++ b/gcc/config/d30v/d30v.h @@ -1621,7 +1621,7 @@ typedef struct d30v_stack { on the stack, there is no need to store anything in `CUMULATIVE_ARGS'; however, the data structure must exist and should not be empty, so use `int'. */ -typedef int CUMULATIVE_ARGS; +#define CUMULATIVE_ARGS int /* A C statement (sans semicolon) for initializing the variable CUM for the state at the beginning of the argument list. The variable has type @@ -2677,7 +2677,7 @@ extern const char *d30v_branch_cost_string; uninitialized global data will be output in the data section if `-fno-common' is passed, otherwise `ASM_OUTPUT_COMMON' will be used. */ -#define BSS_SECTION_ASM_OP "\t.bss" +#define BSS_SECTION_ASM_OP "\t.section .bss" /* If defined, a C expression whose value is a string containing the assembler operation to identify the following data as |