search for: report_fatal_error_dbg

Displaying 2 results from an estimated 2 matches for "report_fatal_error_dbg".

2010 May 02
0
[LLVMdev] Win32 COFF Support
...e_t> map; Please read http://llvm.org/docs/ProgrammersManual.html and use the data structures already provided by LLVM. E.g. http://llvm.org/docs/ProgrammersManual.html#dss_stringmap should definitely be used here. > #ifdef _MSC_VER > #include "stdafx.h" > #endif > #define report_fatal_error_dbg(x) __debugbreak () Generally it's prohibited to use target/compiler-specific defines outside of libSystem. > struct MCWin32CoffObjectWriter : > MCObjectWriter, > coff::file Any reason for such inheritance? > MCSectionCOFF const & Section =...
2010 May 01
4
[LLVMdev] Win32 COFF Support
Hi All, I have created a minimally functional Win32 COFF Exporter using the new MC framework. I made some minor changes to other libraries to allow me to plug it in without building it as part of the LLVM project. I wanted to share it but wasn't sure how to go about doing so, so I have attached the code to this message. Any feedback on would be appreciated. -------------- next part