]> git.proxmox.com Git - mirror_qemu.git/commit
libdecnumber: Introduce libdecnumber Code
authorTom Musta <tommusta@gmail.com>
Mon, 21 Apr 2014 20:54:45 +0000 (15:54 -0500)
committerAlexander Graf <agraf@suse.de>
Mon, 16 Jun 2014 11:24:28 +0000 (13:24 +0200)
commit72ac97cdfc0592b567cb62582300c0d707701bb1
tree79b91c722c95e526dab7dc8cf11f6a246dd5c849
parent9d1c128341df7a303571f172d986291b4f3ed9ee
libdecnumber: Introduce libdecnumber Code

Add files from the libdecnumber decimal floating point library to QEMU.  The libdecnumber
library was originally part of GCC and contains code that is useful in emulating the PowerPC
decimal floating point (DFP) instructions.  This particular copy of the source comes from
GCC 4.3 and is licensed at GPLv2+.

Signed-off-by: Tom Musta <tommusta@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
15 files changed:
include/libdecnumber/dconfig.h [new file with mode: 0644]
include/libdecnumber/decContext.h [new file with mode: 0644]
include/libdecnumber/decDPD.h [new file with mode: 0644]
include/libdecnumber/decNumber.h [new file with mode: 0644]
include/libdecnumber/decNumberLocal.h [new file with mode: 0644]
include/libdecnumber/dpd/decimal128.h [new file with mode: 0644]
include/libdecnumber/dpd/decimal128Local.h [new file with mode: 0644]
include/libdecnumber/dpd/decimal32.h [new file with mode: 0644]
include/libdecnumber/dpd/decimal64.h [new file with mode: 0644]
libdecnumber/decContext.c [new file with mode: 0644]
libdecnumber/decNumber.c [new file with mode: 0644]
libdecnumber/dpd/decimal128.c [new file with mode: 0644]
libdecnumber/dpd/decimal128Local.h [new file with mode: 0644]
libdecnumber/dpd/decimal32.c [new file with mode: 0644]
libdecnumber/dpd/decimal64.c [new file with mode: 0644]