Hi, I was looking at the documentation for exception handling in llvm, and found a lot of todo stuff there. So I was wondering how to do exception handling in llvm. -- Kasra
Hi Kasra,> I was looking at the documentation for exception handling in llvm, and found a lot of todo stuff there. So I was wondering how to do exception handling in llvm.it works, but not very optimally. Try putting some C++ with exception handling into the online demo (http://llvm.org/demo/) to get an idea of how eh is represented in LLVM IR. Ciao, Duncan.