search for: llvm_set_exception_option

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

2007 Aug 29
4
[LLVMdev] RFC: Patch for Exceptions
...vn diff gcc/config/i386/i386.h Index: gcc/config/i386/i386.h =================================================================== --- gcc/config/i386/i386.h (revision 41554) +++ gcc/config/i386/i386.h (working copy) @@ -481,6 +481,10 @@ #define TARGET_TLS_DIRECT_SEG_REFS_DEFAULT 0 #endif +#define LLVM_SET_EXCEPTION_OPTION(argvec) \ + if (flag_exceptions) \ + argvec.push_back("--enable-eh") + /* Once GDB has been enhanced to deal with functions without frame pointers, we can change this to allow for elimination of the frame pointer in leaf functions. */ [bwendling:llvm-eh]...