Internal compiler error 390

Alex Vinokur alexander.vinokur@telrad.co.il
Tue Feb 9 23:47:00 GMT 1999


bbb1.C: In function `int main()':
bbb1.C:20: Internal compiler error 390.
bbb1.C:20: Please submit a full bug report to `egcs-bugs@cygnus.com'.

//  ------------- C++ CODE BEGIN-----------------------
#include <stl.h>

main()
{
 vector<int> vec1;
        vec1.push_back (2);
        vec1.push_back (5);
        vec1.push_back (7);
 vector<int> vec2;
        vec2.push_back (10);
        vec2.push_back (100);
        vec2.push_back (1000);
 vector<int> vecRes;

        transform(vec1.begin(), vec1.end(),
                  vec2.begin(), vec2.end(),
                  vecRes.begin(),
                  operator+
                  );
}
//  ------------- C++ CODE END-----------------------




More information about the Gcc-bugs mailing list