From patchwork Fri Oct 25 15:33:59 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Gabriel F. T. Gomes" X-Patchwork-Id: 35330 Received: (qmail 113225 invoked by alias); 25 Oct 2019 15:36:16 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 113165 invoked by uid 89); 25 Oct 2019 15:36:16 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.6 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=H*F:D*br, HContent-Transfer-Encoding:8bit X-HELO: smtpout1.mo528.mail-out.ovh.net From: "Gabriel F. T. Gomes" To: Subject: [PATCH v2 19/30] Refactor *cvt functions implementation (1/5) Date: Fri, 25 Oct 2019 12:33:59 -0300 Message-ID: <20191025153410.15405-20-gabriel@inconstante.net.br> In-Reply-To: <20191025153410.15405-1-gabriel@inconstante.net.br> References: <20191025153410.15405-1-gabriel@inconstante.net.br> MIME-Version: 1.0 X-Ovh-Tracer-Id: 1615947843105640131 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedufedrleefgdelvdcutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfqggfjpdevjffgvefmvefgnecuuegrihhlohhuthemucehtddtnecu From: "Gabriel F. T. Gomes" No changes since v1. -- 8< -- This patch is to be squashed with the other n/5 refactoring patches. I split it into these 5 patches, because even using -M and -C, 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. --- misc/{efgcvt.c => efgcvt-template.c} | 0 misc/{efgcvt_r.c => efgcvt_r-template.c} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename misc/{efgcvt.c => efgcvt-template.c} (100%) rename misc/{efgcvt_r.c => efgcvt_r-template.c} (100%) 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