David Chisnall

Results 409 comments of David Chisnall

Looks as if these tests all pass now with the Itanium ABI, but they're failing with the Win32 version. That's a bit surprising, because the Win32 EH implementation is a...

> > @DHowett-MSFT, did you ever have time to look at the clang handling of `@finally`? I think this may be related. > > Is this a general issue with...

Please can you update this branch? Some of the SEH stuff may have been fixed in a newer clang build.

Very odd set of failures! Windows has a completely different EH model to everything else, so I'm not surprised if there are tests that fail there but not anywhere else....

Looks as if the non-ARC variant is failing because it's missing a double dereference on the thrown object with libc++abi. @ngrewe?

I'm not actively working on it, but I'm happy to review a PR. You will need to modify three places: - [block_trampolines.S](https://github.com/gnustep/libobjc2/blob/master/block_trampolines.S) needs to have a pair of functions (one...

This looks as if you're seeing this is because we're finding libsupc++.a when we should be looking for only a shared library. Normally on libstdc++ platforms, we use libstdc++.so as...

I'm happy to take a pull request that updates these for Apple compatibility.

I think we can't materialise a constant that large in the and, so the sequence should actually be: ``` lsr \dst, \src, 16 and \dst, \dst, 0xff ``` Do you...

I'm happy to take a PR that fixes this, if you can test it.