[llvm-commits] CVS: llvm/include/llvm/System/DynamicLibrary.h
Reid Spencer
reid at x10sys.com
Fri Aug 25 12:55:10 PDT 2006
Changes in directory llvm/include/llvm/System:
DynamicLibrary.h updated: 1.8 -> 1.9
---
Log message:
For PR797: http://llvm.org/PR797 :
Final commit for this bug. This removes the last EH holdouts in LLVM
and turns off exception support by using the -fno-exceptions option. This
leads to the following reduction in library and executable sizes:
DEBUG BUILD RELEASE BUILD
before after delta before after delta
lib 162,328K 157,616K 4,712 17,864K 16,416K 1,448K
bin 571,444K 557,156K 14,288 63,296K 56,996K 6,300K
Debug Improvement: 19,000K (2.59%)
Release Improvement: 7,748K (9.55%)
---
Diffs of the changes: (+0 -6)
DynamicLibrary.h | 6 ------
1 files changed, 6 deletions(-)
Index: llvm/include/llvm/System/DynamicLibrary.h
diff -u llvm/include/llvm/System/DynamicLibrary.h:1.8 llvm/include/llvm/System/DynamicLibrary.h:1.9
--- llvm/include/llvm/System/DynamicLibrary.h:1.8 Wed Jul 26 11:55:39 2006
+++ llvm/include/llvm/System/DynamicLibrary.h Fri Aug 25 14:54:53 2006
@@ -45,12 +45,6 @@
/// @brief Open program as dynamic library.
DynamicLibrary();
- /// This is the constructor for DynamicLibrary instances. It will open
- /// the dynamic library specified by the filename Path.
- /// @throws std::string indicating why the library couldn't be opened.
- /// @brief Open a dynamic library.
- DynamicLibrary(const char* filename);
-
/// After destruction, the symbols of the library will no longer be
/// available to the program. It is important to make sure the lifespan
/// of a DynamicLibrary exceeds the lifetime of the pointers returned
More information about the llvm-commits
mailing list