Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Import the setjump/longjump exception handling fixes from GCC 2.95.3.test3 | obrien | 2001-03-24 | 1 | -52/+88 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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; } | ||||
* | Virgin import of the GCC 2.95.3 compilers | obrien | 2001-03-19 | 1 | -88/+52 |
| | |||||
* | Enlist the FreeBSD-CURRENT users as testers of GCC 2.95.3 Release Candidate #3 | obrien | 2001-02-17 | 1 | -1/+9 |
| | |||||
* | Enlist the FreeBSD-CURRENT users as testers of GCC 2.95.3 Release Candidate #1 | obrien | 2001-01-03 | 1 | -70/+169 |
| | |||||
* | Virgin import of the GCC 2.95.1 compilers | obrien | 1999-10-16 | 1 | -349/+726 |
| | |||||
* | Virgin import of gcc from EGCS 1.1.2 | obrien | 1999-08-26 | 1 | -2698/+3310 |
| | |||||
* | Import of 2.7.2.1 into vendor branch | peter | 1996-09-18 | 1 | -1/+1 |
| | |||||
* | Import of unmodified (but trimmed) gcc-2.7.2. The bigger parts of the | peter | 1996-09-18 | 1 | -0/+10747 |
non-i386, non-unix, and generatable files have been trimmed, but can easily be added in later if needed. gcc-2.7.2.1 will follow shortly, it's a very small delta to this and it's handy to have both available for reference for such little cost. The freebsd-specific changes will then be committed, and once the dust has settled, the bmakefiles will be committed to use this code. |