Displaying 1 result from an estimated 1 matches for "win64eh_all_20130524".
2013 May 26
1
[LLVMdev] How to always generate epilogue code?
Hi!
I am still working on the Win64 EH code and now have a pretty usable
result. (The MC part is already posted to llvm-commits, the other
part follows soon. If you are curious the whole patch is here:
http://www.redstar.de/ldc/win64eh_all_20130524.diff.)
However, in one case I have a problem with LLVM being too smart.
Consider the following D code:
void doIt()
{
printf("doIt: start\n");
try
{
printf("doIt: try\n");
throw new Exception("Failure");
}
finally
{...