This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[glibc/gabriel/powerpc-ieee128-printscan] Refactor *cvt functions implementation (1/5)


https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=516e87fea648cb1993df6991219cc6d0728e2429

commit 516e87fea648cb1993df6991219cc6d0728e2429
Author: Gabriel F. T. Gomes <gabrielftg@linux.ibm.com>
Date:   Thu Jul 11 11:48:08 2019 -0300

    Refactor *cvt functions implementation (1/5)
    
    This patch is to be squashed with the other n/5 refactoring patches.
    
    I split it into these 5 patches, because even using -M<x> and -C<y>, the
    patches looks as if a lot has changed, when it's basically just moving
    code around.  The final commit will be the squashing of patches 1 to 5,
    with the following commit message:
    
    -- 8< --
    This patch refactors the *cvt functions implementation in a way that
    makes it easier to re-use them for implementing the IEEE long double on
    powerpc64le.  By splitting the implementation per se in one file
    (efgcvt-template.c) and the alias definitions in others (e.g. efgcvt.c),
    the new code makes it easier to define new function names, such as
    __qecvtieee128.

Diff:
---
 misc/{efgcvt.c => efgcvt-template.c}     | 0
 misc/{efgcvt_r.c => efgcvt_r-template.c} | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/misc/efgcvt.c b/misc/efgcvt-template.c
similarity index 100%
rename from misc/efgcvt.c
rename to misc/efgcvt-template.c
diff --git a/misc/efgcvt_r.c b/misc/efgcvt_r-template.c
similarity index 100%
rename from misc/efgcvt_r.c
rename to misc/efgcvt_r-template.c


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]