------- Comment #16 from ivranos at freemail dot gr  2008-10-03 11:52 -------
I managed to replicate the bug in simple code:


#include <iostream>
#include <ctime>
#include <cstdlib>
#include <vector>


int main()
{
    using namespace std;

    vector<int> intVector(1000*1000);

    srand(time(0));


    for(size_t i= 0; i< RAND_MAX; ++i)
    {
        for (vector<int>::size_type j= 0; i< intVector.size(); ++j)
            intVector[j]= rand();

        sort(intVector.begin(), intVector.end());
    }
}


-- 

ivranos at freemail dot gr changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|INVALID                     |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37721

Reply via email to