-
Bug
-
Resolution: Fixed
-
P4
-
6
-
b93
-
x86
-
linux
GCC4.1 become strogner in regard of some C++ patterns.
One heavily used in Hotspot is
class Foo {
void Foo::bar() {}
};
which should be written as
class Foo {
void bar() {}
};
Also if some external inline function is declared as friend, its body is expected to be already seen.
Generally looks like useful cleanup + support for next major GCC release.
One heavily used in Hotspot is
class Foo {
void Foo::bar() {}
};
which should be written as
class Foo {
void bar() {}
};
Also if some external inline function is declared as friend, its body is expected to be already seen.
Generally looks like useful cleanup + support for next major GCC release.
- relates to
-
JDK-6489803 build sparc-specific hotspot code with gcc-4.1
-
- Closed
-