mbox

[PULL,0/7] softfloat queue

Message ID 1453475856-14682-1-git-send-email-peter.maydell@linaro.org
State New
Headers show

Pull-request

git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-softfloat-20160122

Message

Peter Maydell Jan. 22, 2016, 3:17 p.m. UTC
Pullreq with some pending softfloat patches: mine to get rid of the
confusing softfloat specific int types, and Aurelien's to fix the
roundAndPackFloat16 return type.

thanks
-- PMM


The following changes since commit 3c2c85ec4b112e3e2b899472314d5da6880fdf0e:

  Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2016-01-22 14:44:12 +0000)

are available in the git repository at:


  git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-softfloat-20160122

for you to fetch changes up to 7ceac86f49b564954f5bde477c4281f407be1399:

  softfloat: fix return type of roundAndPackFloat16 (2016-01-22 15:09:21 +0000)

----------------------------------------------------------------
softfloat:
 * drop confusing softfloat-only types
 * fix return type of roundAndPackFloat16

----------------------------------------------------------------
Aurelien Jarno (1):
      softfloat: fix return type of roundAndPackFloat16

Peter Maydell (6):
      fpu: Replace int64 typedef with int64_t
      fpu: Replace uint64 typedef with uint64_t
      fpu: Replace int32 typedef with int32_t
      fpu: Replace uint32 typedef with uint32_t
      fpu: Replace int8 typedef with int8_t
      fpu: Replace uint8 typedef with uint8_t

 crypto/secret.c            |   2 +-
 fpu/softfloat-macros.h     |  26 +++---
 fpu/softfloat-specialize.h |   2 +-
 fpu/softfloat.c            | 220 ++++++++++++++++++++++-----------------------
 hw/i386/pc.c               |   2 +-
 hw/ipmi/isa_ipmi_bt.c      |   2 +-
 hw/ipmi/isa_ipmi_kcs.c     |   2 +-
 hw/misc/imx25_ccm.c        |   2 +-
 hw/misc/imx31_ccm.c        |   2 +-
 hw/net/vmware_utils.h      |   2 +-
 hw/net/vmxnet3.c           |   2 +-
 hw/ppc/spapr_events.c      |   4 +-
 include/fpu/softfloat.h    |  68 ++++++--------
 include/hw/i386/pc.h       |   2 +-
 migration/ram.c            |   2 +-
 target-alpha/fpu_helper.c  |   2 +-
 target-mips/kvm.c          |   4 +-
 target-mips/msa_helper.c   |  36 ++++----
 target-s390x/kvm.c         |   2 +-
 tests/vhost-user-test.c    |   2 +-
 20 files changed, 188 insertions(+), 198 deletions(-)

Comments

Peter Maydell Jan. 25, 2016, 10:21 a.m. UTC | #1
On 22 January 2016 at 15:17, Peter Maydell <peter.maydell@linaro.org> wrote:
> Pullreq with some pending softfloat patches: mine to get rid of the
> confusing softfloat specific int types, and Aurelien's to fix the
> roundAndPackFloat16 return type.
>
> thanks
> -- PMM
>
>
> The following changes since commit 3c2c85ec4b112e3e2b899472314d5da6880fdf0e:
>
>   Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2016-01-22 14:44:12 +0000)
>
> are available in the git repository at:
>
>
>   git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-softfloat-20160122
>
> for you to fetch changes up to 7ceac86f49b564954f5bde477c4281f407be1399:
>
>   softfloat: fix return type of roundAndPackFloat16 (2016-01-22 15:09:21 +0000)
>
> ----------------------------------------------------------------
> softfloat:
>  * drop confusing softfloat-only types
>  * fix return type of roundAndPackFloat16

Applied, thanks.

-- PMM