[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 0/3] target-sparc: fixed unused function warnings
From: |
Peter Maydell |
Subject: |
[Qemu-devel] [PATCH 0/3] target-sparc: fixed unused function warnings |
Date: |
Tue, 24 Jun 2014 00:01:28 +0100 |
These patchsets fix clang 3.4 warnings about unused static inline
functions (clang now warns about these if they're defined in a
.c file but then not used; gcc doesn't). The first patch just
removes two totally unused functions; the second two patches
use ifdeffery to avoid defining the functions in non-TARGET_SPARC64
builds.
Peter Maydell (3):
target-sparc: Remove unused gen_op_subi_cc and gen_op_addi_cc
target-sparc: address_mask(), asi_address_mask() are TARGET_SPARC64
only
target-sparc: is_translating_asi() is TARGET_SPARC64 only
target-sparc/ldst_helper.c | 10 +++++-----
target-sparc/translate.c | 24 ------------------------
2 files changed, 5 insertions(+), 29 deletions(-)
--
2.0.0
- [Qemu-devel] [PATCH 0/3] target-sparc: fixed unused function warnings, Peter Maydell, 2014/06/23
- [Qemu-devel] [PATCH 3/3] target-sparc: is_translating_asi() is TARGET_SPARC64 only, Peter Maydell, 2014/06/23
- [Qemu-devel] [PATCH 0/3] target-sparc: fixed unused function warnings,
Peter Maydell <=
- [Qemu-devel] [PATCH 2/3] target-sparc: address_mask(), asi_address_mask() are TARGET_SPARC64 only, Peter Maydell, 2014/06/23
- [Qemu-devel] [PATCH 1/3] target-sparc: Remove unused gen_op_subi_cc and gen_op_addi_cc, Peter Maydell, 2014/06/23
- Re: [Qemu-devel] [PATCH 0/3] target-sparc: fixed unused function warnings, Richard Henderson, 2014/06/24