aboutsummaryrefslogtreecommitdiff
path: root/contrib/libobjc
Commit message (Collapse)AuthorAgeFilesLines
* MFC: bring in GCC 2.95.3 + official sjlj exception fixes.David E. O'Brien2001-04-102-4/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Approved by: jkh The the setjump/longjump exception handling fixes are from GCC 2.95.3.test3 and were removed from GCC 2.95.3.test4 and the subsequent release due to bootstrap problems on HP-UX. However, they were very well tested and fixed major problems on all other platforms. Including all the all the BSD's. OpenBSD and FreeBSD 5-current both use these official sjlj patches. W/o this upgrade the following program segmentation faults if compiled with -O2 (but not -Os or -O or -O0) on 4.2FreeBSD. There are some large C++ libraries where segfaults also occur, even at -O. #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=/stable/4/; revision=75390
* Sync up with latest vendor files.David E. O'Brien2000-03-301-0/+5
| | | | Notes: svn path=/stable/4/; revision=58827
* This commit was manufactured by cvs2svn to create branch 'RELENG_4'.cvs2svn2000-03-302-0/+205
| | | | Notes: svn path=/stable/4/; revision=58812
* This commit was manufactured by cvs2svn to create branch 'RELENG_4'.cvs2svn2000-03-2950-0/+15443
Notes: svn path=/stable/4/; revision=58790