From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id A25D93858C55 for ; Tue, 20 Sep 2022 19:50:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A25D93858C55 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1663703424; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:content-type:content-type; bh=3Btk3/OdMGcWrBUzw0+ppON870pdt9QLcSvA+nRjvxg=; b=ClfeAgiEqnfRB14iKe4YxuvJxFGaGM9waqeUGVN7UHxIUi56KWFHF1VSINOrqDEBKG9s4D w8/4Pzg/RrlZotBXRqkmVL95kRbguxHjj8YbL+ZOvTmsMj1xns8p19T/NaScIU6PplxKpk eYq3006IJQ/DacHxrWGSVOdw9Bn19wc= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-636-uAOXDHpyP1-dAnOkz78q_g-1; Tue, 20 Sep 2022 15:50:23 -0400 X-MC-Unique: uAOXDHpyP1-dAnOkz78q_g-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id C477F855304 for ; Tue, 20 Sep 2022 19:50:22 +0000 (UTC) Received: from greed.delorie.com (unknown [10.22.8.19]) by smtp.corp.redhat.com (Postfix) with ESMTPS id B10BF2027063 for ; Tue, 20 Sep 2022 19:50:22 +0000 (UTC) Received: from greed.delorie.com.redhat.com (localhost [127.0.0.1]) by greed.delorie.com (8.15.2/8.15.2) with ESMTP id 28KJoCSU2502916 for ; Tue, 20 Sep 2022 15:50:12 -0400 Date: Tue, 20 Sep 2022 15:50:12 -0400 From: DJ Delorie Subject: [PATCH 0/2] coalesce some rv64 and rv32 stuff To: libc-alpha@sourceware.org Message-Id: X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="US-ASCII"; x-default=true X-Spam-Status: No, score=-5.0 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: This is a rework of Alistair's patches from Sept 2020. I used the latest rv64 ULPs and tweaked the .c moves to accomodate the latest copyright years etc. Alistair retains credit for the authorship, I'm just tweaking it to make it apply cleanly. https://patchwork.sourceware.org/project/glibc/list/?series=815 Alistair Francis (2): riscv: Consolidate the libm-test-ulps riscv: Remove RV32 floating point functions sysdeps/riscv/rv32/rvd/libm-test-ulps | 1405 ----------------- sysdeps/riscv/rv32/rvd/libm-test-ulps-name | 1 - sysdeps/riscv/rv32/rvd/s_lrint.c | 31 - sysdeps/riscv/rv32/rvd/s_lround.c | 31 - sysdeps/riscv/rv32/rvf/s_lrintf.c | 31 - sysdeps/riscv/rv32/rvf/s_lroundf.c | 31 - sysdeps/riscv/{rv64 => }/rvd/libm-test-ulps | 0 .../riscv/{rv64 => }/rvd/libm-test-ulps-name | 0 sysdeps/riscv/{rv64 => }/rvd/s_lrint.c | 12 +- sysdeps/riscv/{rv64 => }/rvd/s_lround.c | 12 +- sysdeps/riscv/{rv64 => }/rvf/s_lrintf.c | 12 +- sysdeps/riscv/{rv64 => }/rvf/s_lroundf.c | 12 +- 12 files changed, 40 insertions(+), 1538 deletions(-) delete mode 100644 sysdeps/riscv/rv32/rvd/libm-test-ulps delete mode 100644 sysdeps/riscv/rv32/rvd/libm-test-ulps-name delete mode 100644 sysdeps/riscv/rv32/rvd/s_lrint.c delete mode 100644 sysdeps/riscv/rv32/rvd/s_lround.c delete mode 100644 sysdeps/riscv/rv32/rvf/s_lrintf.c delete mode 100644 sysdeps/riscv/rv32/rvf/s_lroundf.c rename sysdeps/riscv/{rv64 => }/rvd/libm-test-ulps (100%) rename sysdeps/riscv/{rv64 => }/rvd/libm-test-ulps-name (100%) rename sysdeps/riscv/{rv64 => }/rvd/s_lrint.c (83%) rename sysdeps/riscv/{rv64 => }/rvd/s_lround.c (83%) rename sysdeps/riscv/{rv64 => }/rvf/s_lrintf.c (83%) rename sysdeps/riscv/{rv64 => }/rvf/s_lroundf.c (83%) -- 2.31.1