From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1005) id 322B23857C46; Mon, 31 Jan 2022 20:57:15 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 322B23857C46 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Michael Meissner To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/meissner/heads/work077)] Revert patch. X-Act-Checkin: gcc X-Git-Author: Michael Meissner X-Git-Refname: refs/users/meissner/heads/work077 X-Git-Oldrev: b62254a5c029fbca54a374f18ca00160d5209e8c X-Git-Newrev: cb15f87ef42a151ff287489ff7da1218beddd0b3 Message-Id: <20220131205715.322B23857C46@sourceware.org> Date: Mon, 31 Jan 2022 20:57:15 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Jan 2022 20:57:15 -0000 https://gcc.gnu.org/g:cb15f87ef42a151ff287489ff7da1218beddd0b3 commit cb15f87ef42a151ff287489ff7da1218beddd0b3 Author: Michael Meissner Date: Mon Jan 31 15:56:39 2022 -0500 Revert patch. 2022-01-26 Michael Meissner gcc/ Revert patch. * config/rs6000/rs6000.cc (TARGET_IEEEQUAD_DEFAULT): If the compiler used to build the current compiler defaults to IEEE 128-bit long double, make that the default for this build. Diff: --- gcc/config/rs6000/rs6000.cc | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/gcc/config/rs6000/rs6000.cc b/gcc/config/rs6000/rs6000.cc index 3b4c496df56..666dec694a8 100644 --- a/gcc/config/rs6000/rs6000.cc +++ b/gcc/config/rs6000/rs6000.cc @@ -91,22 +91,14 @@ explicitly redefine TARGET_IEEEQUAD and TARGET_IEEEQUAD_DEFAULT to 0, so those systems will not pick up this default. This needs to be after all of the include files, so that POWERPC_LINUX and POWERPC_FREEBSD are - properly defined. - - If we are being built by a compiler that uses IEEE 128-bit as the default - long double and no explicit long double format was selected, then also - default long double to IEEE 128-bit. */ + properly defined. */ #ifndef TARGET_IEEEQUAD_DEFAULT #if !defined (POWERPC_LINUX) && !defined (POWERPC_FREEBSD) #define TARGET_IEEEQUAD_DEFAULT 1 #else -#ifdef __LONG_DOUBLE_IEEE128__ -#define TARGET_IEEEQUAD_DEFAULT 1 -#else #define TARGET_IEEEQUAD_DEFAULT 0 #endif #endif -#endif /* Don't enable PC-relative addressing if the target does not support it. */ #ifndef PCREL_SUPPORTED_BY_OS