mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-30 06:40:53 +00:00
a4c047dacb
This was due to the 'assert' macro expanding into a function call on some platforms which could throw. The C++ compiler then added checks for the exception specifications in these functions, which pulled in the C++ runtime. This was bad, and the assertions can never fire (the library is now debugged) so just remove them. llvm-svn: 9801 |
||
---|---|---|
.. | ||
GCCLibraries | ||
libdummy | ||
libprofile | ||
libtrace | ||
Makefile | ||
README.txt |
This directory contains the various runtime libraries used by components of the LLVM compiler. For example, the automatic pool allocation transformation inserts calls to an external pool allocator library. This runtime library is an example of the type of library that lives in these directories.