This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
3.0.5 breaks basis C++
- From: jarausch at igpm dot rwth-aachen dot de
- To: gcc-bugs at gcc dot gnu dot org
- Date: Thu, 11 Apr 2002 10:22:15 +0200 (CEST)
- Subject: 3.0.5 breaks basis C++
- Reply-to: jarausch at igpm dot rwth-aachen dot de
Hi,
The following basic C++ programme compiles fine
but gives a segmentfault when invoked.
This problem does not occur with 3.0.4
(Here: kernel 2.4.18 SMP, libgcc-2.2.5)
Thanks for looking into it,
Helmut Jarausch
Lehrstuhl fuer Numerische Mathematik
Institute of Technology, RWTH Aachen
D 52056 Aachen, Germany
--------------------------
#include <iostream>
using std::cout; using std::endl; using std::cin;
int main() {
int Parm;
cin >> Parm;
cout << Parm << endl;
}