This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug java/19738] gcjh generates invalid class member floating-point initialisers
- From: "rmathew at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 1 Feb 2005 11:19:44 -0000
- Subject: [Bug java/19738] gcjh generates invalid class member floating-point initialisers
- References: <20050201065958.19738.rmathew@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From rmathew at gcc dot gnu dot org 2005-02-01 11:19 -------
A patch to avoid this error is at:
http://gcc.gnu.org/ml/java-patches/2005-q1/msg00255.html
Note that the correct way to initialise a
const float is apparently:
class Foo
{
static const float bar;
}
const float ::Foo::bar = 123.456f;
If gcjh were to be modified to generate
code like this in the headers, we get
multiple definition errors from the linker
when two or more files #include the
generated file.
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2005-02-01 11:19:42
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19738