Displaying 1 result from an estimated 1 matches for "1011080".
Did you mean:
10.1080
2010 Jul 12
2
[LLVMdev] clang/g++ frontend: can __cxa_end_catch throw?
When I compile a piece of C++ with exceptions into .ll I see that gcc
frontend in some cases calls __cxa_end_catch with 'call' and in other
cases with 'invoke' with termination in case of exception. clang++
always just calls __cxa_end_catch with 'call' instruction.
Which way is correct?
--- c.cpp ---
#include <stdio.h>
#include <stdlib.h>
struct C {