This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
[Patch, libgfortran] Obvious ABI bugfix committed
- From: Janne Blomqvist <blomqvist dot janne at gmail dot com>
- To: Fortran List <fortran at gcc dot gnu dot org>, gcc-patches <gcc-patches at gcc dot gnu dot org>
- Date: Fri, 21 Mar 2008 19:41:27 +0200
- Subject: [Patch, libgfortran] Obvious ABI bugfix committed
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; bh=QbiFan2sYTM1YvwMhtRFrKqTmyXNKNLAsvLrqKCL8MA=; b=TcRchnEF4Td66DLNFt19xs3MY6CfWdvaFk3cJLfeGSY7cP4i/PJEiD2UVGHiOt0snOJexn8u2cbzzTolylVf92UnftgD3/rKlk+hi9vHJ2M4keYbgaIm7+42R8v975TJoFtGimdnNyIxoTbHvg3reWtmOJLd/yIdJtqwv3mCvXQ=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=H2DN6jqhZyb4oxLNEr3ZXA5j0zqFT+OlTvnKGxsAFi126bPtVLKSaMhiU/soEze7ZhgC4uNly7tno+ct1yy35Z4DqbUH96pnImiG66d1CpHzf1MJY5uJZoEvLLmzsXeCGM0vQNPg7//einoYeM/W68/VMU2y2pmlEg5cL7qdfHI=
Hi,
I committed the patch below as obvious. The reason is that we shouldn't
introduce new symbols into the GFORTRAN_1.0 node as that one is now the
node used by the recently released gfortran 4.3.
2008-03-21 Janne Blomqvist <jb@gcc.gnu.org>
* gfortran.map: Move erfc_scaled symbols to new symbol node
GFORTRAN_1.1, thereby fixing ABI bug introduced in r132846.
Index: gfortran.map
===================================================================
--- gfortran.map (revision 133430)
+++ gfortran.map (working copy)
@@ -88,10 +88,6 @@ GFORTRAN_1.0 {
_gfortran_eoshift3_4_char;
_gfortran_eoshift3_8;
_gfortran_eoshift3_8_char;
- _gfortran_erfc_scaled_r4;
- _gfortran_erfc_scaled_r8;
- _gfortran_erfc_scaled_r10;
- _gfortran_erfc_scaled_r16;
_gfortran_etime;
_gfortran_etime_sub;
_gfortran_exit_i4;
@@ -1035,6 +1031,14 @@ GFORTRAN_1.0 {
*;
};
+GFORTRAN_1.1 {
+ global:
+ _gfortran_erfc_scaled_r4;
+ _gfortran_erfc_scaled_r8;
+ _gfortran_erfc_scaled_r10;
+ _gfortran_erfc_scaled_r16;
+} GFORTRAN_1.0;
+
F2C_1.0 {
global:
_gfortran_f2c_specific__abs_c4;
--
Janne Blomqvist