From mboxrd@z Thu Jan 1 00:00:00 1970 From: rodrigc@gcc.gnu.org To: gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org, martin.brown@cdcsolutions.com, nobody@gcc.gnu.org, rodrigc@gcc.gnu.org Subject: Re: c++/915: -frepo doesn't work Date: Sat, 15 Sep 2001 20:02:00 -0000 Message-id: <20010916030207.24600.qmail@sourceware.cygnus.com> X-SW-Source: 2001-09/msg00315.html List-Id: Synopsis: -frepo doesn't work State-Changed-From-To: feedback->closed State-Changed-By: rodrigc State-Changed-When: Sat Sep 15 20:02:07 2001 State-Changed-Why: The following code (extracted from the preprocessed source in this PR) compiles with the -frepo flag under gcc 3.0.1: #include #include using namespace std; int main(int, char*[]) { vector intV(10); for (int i = 0; i < 10; ++i) { intV.push_back(i); } vector::const_iterator i; for (i = intV.begin(); i != intV.end(); ++i) { cout << *i; } return 1; } http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=915&database=gcc