diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-09 14:23:35 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-09 14:23:35 +0000 |
commit | aeb6d7ef7ed4d220cbe007524eaf2e06b7e70c97 (patch) | |
tree | 75b0e77395b3484b3774824792bfef303b7801ce /gcc/config/elfos.h | |
parent | 9dd2757dda1546cfd3879ba296b05af6d78b48d9 (diff) | |
download | gcc-aeb6d7ef7ed4d220cbe007524eaf2e06b7e70c97.tar.gz |
* elfos.h (ASM_OUTPUT_LIMITED_STRING): Add parentheses around
assignment used as truth value.
* function.c (assign_temp): Mark parameter `dont_promote' with
ATTRIBUTE_UNUSED. Wrap variable `unsignedp' with macro
PROMOTE_FOR_CALL_ONLY.
* genrecog.c (write_subroutine): Mark variable `operands' with
ATTRIBUTE_UNUSED.
* optabs.c (prepare_cmp_insn): Mark parameter `align' with
ATTRIBUTE_UNUSED.
* sdbout.c (sdbout_init): Likewise for parameter `asm_file'.
(sdbout_begin_block, sdbout_end_block): Likewise for `file'.
* toplev.c (note_deferral_of_defined_inline_function): Likewise
for `decl'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31293 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/elfos.h')
-rw-r--r-- | gcc/config/elfos.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/elfos.h b/gcc/config/elfos.h index 4b4b87662c6..a3bfcd3e764 100644 --- a/gcc/config/elfos.h +++ b/gcc/config/elfos.h @@ -709,7 +709,7 @@ dtors_section () \ \ fprintf ((FILE), "\t%s\t\"", STRING_ASM_OP); \ \ - for (; ch = *_limited_str; _limited_str++) \ + for (; (ch = *_limited_str); _limited_str++) \ { \ register int escape; \ \ |