This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libfortran/24432] [4.1 regression] Missing symbols
- From: "ebotcazou at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 21 Nov 2005 11:45:51 -0000
- Subject: [Bug libfortran/24432] [4.1 regression] Missing symbols
- References: <bug-24432-226@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #15 from ebotcazou at gcc dot gnu dot org 2005-11-21 11:45 -------
> FreeBSD has the same problem with missing long double math
> functions. I tried to add an appropriate XFAIL clause for
> FreeBSD, but dejagnu would still process the file.
Huh... the following patch fixes the problem for me. Can I install it?
Index: lib/target-supports.exp
===================================================================
--- lib/target-supports.exp (revision 107161)
+++ lib/target-supports.exp (working copy)
@@ -530,6 +530,7 @@
puts $f "integer,parameter :: k = &"
puts $f " selected_real_kind (precision (0.0_8) + 1)"
puts $f "real(kind=k) :: x"
+ puts $f "x = cos (x);"
puts $f "end"
close $f
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24432