This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Exception handling
- From: "Serguei I. Ivantsov" <admin at gsc-game dot kiev dot ua>
- To: <gcc at gcc dot gnu dot org>
- Date: Mon, 26 Aug 2002 18:14:19 +0300
- Subject: Exception handling
Hello!
Please help me with exception handling under gcc
The very simple program:
int main(int argc, char* argv[])
{
printf("Start\n");
try{
printf("Block\n");
int x=0;
int y=0;
int z;
z=x/y;
}catch(...){
printf("Except\n");
};
printf("End\n");
return 0;
}
Execution stops after "Floating point exception" and never riches catch
section.
What is wrong? It is works pretty good under M$ :)
--
Regards,
Serguei I. Ivantsov
GSC Game World