search for: __cxx_personality_v0

Displaying 1 result from an estimated 1 matches for "__cxx_personality_v0".

Did you mean: ___gxx_personality_v0
2014 May 23
2
[LLVMdev] Personality function for llvm.gcroot
Hello, Why does LLVM use __gcc_personality_v0 instead of __gxx_personality_v0 function when it lowers llvm.gcroot intrinsic? For my try-catch codegen I use last one (so does clang) and it conflicts with __gcc_personality_v0 produced by LLVM? I know how to solve it with my own GC plug-in, just wondering. And what's the difference between these two functions anyway? Thanks,