mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
Sparc: comment out unused variable, spotted by clang
The variable is_annulled is referenced in a FIXME comment, so instead of removing the variable, comment out the lines so that the FIXME can be understood. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
8983536388
commit
a9be79d65f
1 changed files with 2 additions and 2 deletions
|
@ -2760,7 +2760,7 @@ print_insn_sparc (bfd_vma memaddr, disassemble_info *info)
|
|||
int found_plus = 0;
|
||||
|
||||
/* Nonzero means we have an annulled branch. */
|
||||
int is_annulled = 0;
|
||||
/* int is_annulled = 0; */ /* see FIXME below */
|
||||
|
||||
/* Do we have an `add' or `or' instruction combining an
|
||||
immediate with rs1? */
|
||||
|
@ -2796,7 +2796,7 @@ print_insn_sparc (bfd_vma memaddr, disassemble_info *info)
|
|||
{
|
||||
case 'a':
|
||||
(*info->fprintf_func) (stream, "a");
|
||||
is_annulled = 1;
|
||||
/* is_annulled = 1; */ /* see FIXME below */
|
||||
++s;
|
||||
continue;
|
||||
case 'N':
|
||||
|
|
Loading…
Reference in a new issue