Bruzzone Mirko wrote:
/tmp//ccWSbEX3.s: Assembler messages:
/tmp//ccWSbEX3.s:845: Error: Unrecognized opcode: `mfcr'
You are probably using the wrong assembler, or an out of date assembler.
Try reading the install instructions for this target at
http://gcc.gnu.org/install/specific.html#x-ibm-a
Hi everybody,
I have a product. It has been written using C++.
I have the need to compile it, on Aix 5.1 with g++ 3.4.3.
GCC as well as G++ source codes have been downloaded as from the gnu ftp
site.
After configuration, I launch the make, but I have this problem:
/tmp//ccWSbEX3.s
] gcc-v8qi-bug]$ echo $?
1
---
with g++-3.4.2 it is ok, so it is a regression.
please also note, that with gcc-3.4.3 it is also ok, so it is g++ specific
(???)
here are assembly parts:
---g++-3.4.3---
void do_subs(unsigned char v)
{
8048374: 55 push %ebp
On Tuesday 28 Dec 2004 20:27, Andrew Pinski wrote:
> On Dec 28, 2004, at 3:26 PM, John M Collins wrote:
> > Please "CC" me as I'm not subscribed.
> >
> > I have the following program segment (cutting down to bare minimum).
> > This has
> > worked previously with G++ 3.3.* and earlier.
>
> Read the
On Dec 28, 2004, at 3:26 PM, John M Collins wrote:
Please "CC" me as I'm not subscribed.
I have the following program segment (cutting down to bare minimum).
This has
worked previously with G++ 3.3.* and earlier.
Read the 3.4.0 release notes.
Thanks,
Andrew Pinski
A {
public:
int field1;
};
template class B : public A {
public:
int field2;
};
template class C : public B {
public:
C(int k) { field1 = k; }
// G++ 3.4.3 complains that "field1" is not defined
void setk(int k) { field1 = k;
the following code ICEs with g++-3.3.5 and freezes g++-3.4.3
--- begin of tree.cc --
namespace numbers {
int subtrees = 4;
}
template< class T >
class Tree {
public:
Tree* L[numbers::subtrees];
Tree* R[numbers::subtrees];