aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-08-25 19:54:53 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-08-25 19:54:53 +0000
commit99655e16a6b0eafc8e18e73efe3ab27d2faf0a4a (patch)
tree1ce88ce7b68dbce9cd9d008db8234c1f52db86bb /include
parentf3e4f0e615bb2c36c4a9d60bb908e08b76025c75 (diff)
downloadexternal_llvm-99655e16a6b0eafc8e18e73efe3ab27d2faf0a4a.zip
external_llvm-99655e16a6b0eafc8e18e73efe3ab27d2faf0a4a.tar.gz
external_llvm-99655e16a6b0eafc8e18e73efe3ab27d2faf0a4a.tar.bz2
For 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%) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29882 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/System/DynamicLibrary.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/System/DynamicLibrary.h b/include/llvm/System/DynamicLibrary.h
index fc1bfbe..5499f9d 100644
--- a/include/llvm/System/DynamicLibrary.h
+++ b/include/llvm/System/DynamicLibrary.h
@@ -45,12 +45,6 @@ namespace sys {
/// @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