aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-29 21:43:58 +0000
committerChris Lattner <sabre@nondot.org>2003-12-29 21:43:58 +0000
commit9b448b703fbd60951a57e4d912bcbaf0181ed253 (patch)
tree0d08e012f6d1536c590577ff7a22d955434cd5c1 /lib
parent2d6481cc2a168c4a867f8046119607f72552ef31 (diff)
downloadexternal_llvm-9b448b703fbd60951a57e4d912bcbaf0181ed253.zip
external_llvm-9b448b703fbd60951a57e4d912bcbaf0181ed253.tar.gz
external_llvm-9b448b703fbd60951a57e4d912bcbaf0181ed253.tar.bz2
Add trivial exception specs to produce better code since the methods cannot
be inlined. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10643 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Support/FileUtilities.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Support/FileUtilities.cpp b/lib/Support/FileUtilities.cpp
index 02b4edd..5b7f7b0 100644
--- a/lib/Support/FileUtilities.cpp
+++ b/lib/Support/FileUtilities.cpp
@@ -199,11 +199,11 @@ bool llvm::MakeFileReadable(const std::string &Filename) {
// FDHandle class implementation
//
-FDHandle::~FDHandle() {
+FDHandle::~FDHandle() throw() {
if (FD != -1) close(FD);
}
-FDHandle &FDHandle::operator=(int fd) {
+FDHandle &FDHandle::operator=(int fd) throw() {
if (FD != -1) close(FD);
FD = fd;
return *this;
@@ -212,7 +212,7 @@ FDHandle &FDHandle::operator=(int fd) {
/// take - Take ownership of the file descriptor away from the FDHandle
/// object, so that the file is not closed when the FDHandle is destroyed.
-int FDHandle::take() {
+int FDHandle::take() throw() {
int Ret = FD;
FD = -1;
return Ret;