aboutsummaryrefslogtreecommitdiff
path: root/contrib/gcc/except.c
Commit message (Collapse)AuthorAgeFilesLines
* GCC 4.2.1 release.Alexander Kabaev2007-08-141-1/+5
| | | | Notes: svn path=/vendor/gcc/dist/; revision=171825
* GCC 4.2.0 release.Alexander Kabaev2007-05-191-955/+1132
| | | | Notes: svn path=/vendor/gcc/dist/; revision=169689
* Gcc 3.4.2 20040728.Alexander Kabaev2004-07-281-314/+294
| | | | Notes: svn path=/vendor/gcc/dist/; revision=132718
* Gcc 3.3.1-pre as of 2003-07-11.Alexander Kabaev2003-07-111-480/+266
| | | | Notes: svn path=/vendor/gcc/dist/; revision=117395
* Gcc 3.1.0 pre-release from the FSF anoncvs repo on 9-May-2002 15:57:15 EDT.David E. O'Brien2002-05-091-63/+238
| | | | Notes: svn path=/vendor/gcc/dist/; revision=96263
* Enlist the FreeBSD-CURRENT users as testers of what is to become Gcc 3.1.0.David E. O'Brien2002-02-011-2304/+3183
| | | | | | | These bits are taken from the FSF anoncvs repo on 1-Feb-2002 08:20 PST. Notes: svn path=/vendor/gcc/dist/; revision=90075
* Import the setjump/longjump exception handling fixes from GCC 2.95.3.test3David E. O'Brien2001-03-241-19/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that were removed from GCC 2.95.3.test4 and the subsequent release due to problems on HP-UX. However, they work just fine on all the BSD's. W/o these patches the following program segmentation faults if compiled with -O2 (but not -Os or -O or -O0): #include <stdio.h> class A { public: A() { printf("c'tor A\n"); } ~A(){ printf("d'tor A\n"); } }; class foo : public A { public: foo() { printf("C'tor foo\n"); throw 8; } ~foo() { printf("D'tor foo\n"); } }; int main(){ try { foo fii; } catch (int){ printf("catch ...\n"); } return 0; } Notes: svn path=/vendor/gcc/dist/; revision=74722
* Virgin import of the GCC 2.95.3 compilersDavid E. O'Brien2001-03-191-38/+19
| | | | Notes: svn path=/vendor/gcc/dist/; revision=74473
* Enlist the FreeBSD-CURRENT users as testers of GCC 2.95.3 Release Candidate #1David E. O'Brien2001-01-031-19/+38
| | | | Notes: svn path=/vendor/gcc/dist/; revision=70635
* Virgin import of the GCC 2.95.1 compilersDavid E. O'Brien1999-10-161-143/+416
| | | | Notes: svn path=/vendor/gcc/dist/; revision=52284
* Virgin import of gcc from EGCS 1.1.2David E. O'Brien1999-08-261-0/+2694
Notes: svn path=/vendor/gcc/dist/; revision=50397