This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/915: -frepo doesn't work
- To: gcc-bugs at gcc dot gnu dot org, gcc-prs at gcc dot gnu dot org, martin dot brown at cdcsolutions dot com, nobody at gcc dot gnu dot org, rodrigc at gcc dot gnu dot org
- Subject: Re: c++/915: -frepo doesn't work
- From: rodrigc at gcc dot gnu dot org
- Date: 16 Sep 2001 03:02:07 -0000
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 <vector>
#include <iostream>
using namespace std;
int main(int, char*[]) {
vector<int> intV(10);
for (int i = 0; i < 10; ++i) {
intV.push_back(i);
}
vector<int>::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