diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-09 16:31:53 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-09 16:31:53 +0000 |
commit | 917938feecdaa037a6e258e511bdb1a17aa8a130 (patch) | |
tree | 2612c00ba3fd0d0772838493d20ed0302595f51b /gcc/insn-addr.h | |
parent | ef624d6678e9009316f62c21a0d4df195d0b45f1 (diff) | |
download | gcc-917938feecdaa037a6e258e511bdb1a17aa8a130.tar.gz |
* 1750a.md: Add default case in switch.
* alpha/vms.h (INITIAL_ELIMINATION_OFFSET): Add abort clause in
if-else statement.
* dsp16xx.c (print_operand_address): Likewise.
* i386/osf1elf.h (FUNCTION_PROFILER): Const-ify.
* ia64.md: Add missing braces.
* rs6000-protos.h (s8bit_cint_operand): Prototype.
* s390.h (INITIAL_ELIMINATION_OFFSET): Add abort clause in
if-else statement.
* stormy16.h (REG_CLASS_CONTENTS): Add missing braces.
* v850.h (OUTPUT_ADDR_CONST_EXTRA): Don't issue a `return'.
* dbxout.c (dbxout_source_file): Move a variable into the scope
where it is used.
* final.c (profile_function): Mark parameter with
ATTRIBUTE_UNUSED.
* genemit.c (gen_expand): Likewise for generated file.
* insn-addr.h (INSN_ADDRESSES_NEW): Avoid undefined behavior.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47812 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/insn-addr.h')
-rw-r--r-- | gcc/insn-addr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/insn-addr.h b/gcc/insn-addr.h index c3690aa79bf..214df19d573 100644 --- a/gcc/insn-addr.h +++ b/gcc/insn-addr.h @@ -41,7 +41,7 @@ extern int insn_current_address; if (INSN_ADDRESSES_SET_P ()) \ { \ if (INSN_ADDRESSES_SIZE () <= insn_uid__) \ - insn_addresses_ = VARRAY_GROW (insn_addresses_, insn_uid__ + 1); \ + VARRAY_GROW (insn_addresses_, insn_uid__ + 1); \ INSN_ADDRESSES (insn_uid__) = insn_addr__; \ } \ } \ |