diff options
author | Reid Kleckner <rnk@google.com> | 2016-10-19 23:39:55 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2016-10-19 23:39:55 +0000 |
commit | 6432d45f7b97e37535e62ab3b505d327c99ed74c (patch) | |
tree | 9f9dbc89ba1486b14a6ba4fa401ff497574b9896 /clang/include | |
parent | 0b5102fd7eaac660e586648c9ce0ef4b74822788 (diff) | |
download | bcm5719-llvm-6432d45f7b97e37535e62ab3b505d327c99ed74c.tar.gz bcm5719-llvm-6432d45f7b97e37535e62ab3b505d327c99ed74c.zip |
Use noexcept instead of LLVM_NOEXCEPT now that all compilers support it
llvm-svn: 284667
Diffstat (limited to 'clang/include')
-rw-r--r-- | clang/include/clang/AST/Attr.h | 9 | ||||
-rw-r--r-- | clang/include/clang/AST/Stmt.h | 14 | ||||
-rw-r--r-- | clang/include/clang/Format/Format.h | 2 | ||||
-rw-r--r-- | clang/include/clang/Lex/PreprocessingRecord.h | 22 | ||||
-rw-r--r-- | clang/include/clang/Lex/Preprocessor.h | 4 | ||||
-rw-r--r-- | clang/include/clang/Sema/Sema.h | 4 | ||||
-rw-r--r-- | clang/include/clang/Sema/SemaInternal.h | 6 |
7 files changed, 30 insertions, 31 deletions
diff --git a/clang/include/clang/AST/Attr.h b/clang/include/clang/AST/Attr.h index 85caf9d7cc1..bbe320c28a3 100644 --- a/clang/include/clang/AST/Attr.h +++ b/clang/include/clang/AST/Attr.h @@ -55,21 +55,20 @@ protected: unsigned IsLateParsed : 1; unsigned DuplicatesAllowed : 1; - void *operator new(size_t bytes) LLVM_NOEXCEPT { + void *operator new(size_t bytes) noexcept { llvm_unreachable("Attrs cannot be allocated with regular 'new'."); } - void operator delete(void *data) LLVM_NOEXCEPT { + void operator delete(void *data) noexcept { llvm_unreachable("Attrs cannot be released with regular 'delete'."); } public: // Forward so that the regular new and delete do not hide global ones. void *operator new(size_t Bytes, ASTContext &C, - size_t Alignment = 8) LLVM_NOEXCEPT { + size_t Alignment = 8) noexcept { return ::operator new(Bytes, C, Alignment); } - void operator delete(void *Ptr, ASTContext &C, - size_t Alignment) LLVM_NOEXCEPT { + void operator delete(void *Ptr, ASTContext &C, size_t Alignment) noexcept { return ::operator delete(Ptr, C, Alignment); } diff --git a/clang/include/clang/AST/Stmt.h b/clang/include/clang/AST/Stmt.h index 3bce2ade3c9..562b49a366f 100644 --- a/clang/include/clang/AST/Stmt.h +++ b/clang/include/clang/AST/Stmt.h @@ -71,10 +71,10 @@ public: // Make vanilla 'new' and 'delete' illegal for Stmts. protected: - void *operator new(size_t bytes) LLVM_NOEXCEPT { + void *operator new(size_t bytes) noexcept { llvm_unreachable("Stmts cannot be allocated with regular 'new'."); } - void operator delete(void *data) LLVM_NOEXCEPT { + void operator delete(void *data) noexcept { llvm_unreachable("Stmts cannot be released with regular 'delete'."); } @@ -284,12 +284,12 @@ public: return operator new(bytes, *C, alignment); } - void *operator new(size_t bytes, void *mem) LLVM_NOEXCEPT { return mem; } + void *operator new(size_t bytes, void *mem) noexcept { return mem; } - void operator delete(void *, const ASTContext &, unsigned) LLVM_NOEXCEPT {} - void operator delete(void *, const ASTContext *, unsigned) LLVM_NOEXCEPT {} - void operator delete(void *, size_t) LLVM_NOEXCEPT {} - void operator delete(void *, void *) LLVM_NOEXCEPT {} + void operator delete(void *, const ASTContext &, unsigned) noexcept {} + void operator delete(void *, const ASTContext *, unsigned) noexcept {} + void operator delete(void *, size_t) noexcept {} + void operator delete(void *, void *) noexcept {} public: /// \brief A placeholder type used to construct an empty shell of a diff --git a/clang/include/clang/Format/Format.h b/clang/include/clang/Format/Format.h index ac1c9687ad9..338092c2af1 100644 --- a/clang/include/clang/Format/Format.h +++ b/clang/include/clang/Format/Format.h @@ -35,7 +35,7 @@ namespace format { enum class ParseError { Success = 0, Error, Unsuitable }; class ParseErrorCategory final : public std::error_category { public: - const char *name() const LLVM_NOEXCEPT override; + const char *name() const noexcept override; std::string message(int EV) const override; }; const std::error_category &getParseCategory(); diff --git a/clang/include/clang/Lex/PreprocessingRecord.h b/clang/include/clang/Lex/PreprocessingRecord.h index 3ddf450053e..826ba33fbb7 100644 --- a/clang/include/clang/Lex/PreprocessingRecord.h +++ b/clang/include/clang/Lex/PreprocessingRecord.h @@ -32,11 +32,11 @@ namespace clang { /// \brief Allocates memory within a Clang preprocessing record. void *operator new(size_t bytes, clang::PreprocessingRecord &PR, - unsigned alignment = 8) LLVM_NOEXCEPT; + unsigned alignment = 8) noexcept; /// \brief Frees memory allocated in a Clang preprocessing record. void operator delete(void *ptr, clang::PreprocessingRecord &PR, - unsigned) LLVM_NOEXCEPT; + unsigned) noexcept; namespace clang { class MacroDefinitionRecord; @@ -98,24 +98,24 @@ namespace clang { // Only allow allocation of preprocessed entities using the allocator // in PreprocessingRecord or by doing a placement new. void *operator new(size_t bytes, PreprocessingRecord &PR, - unsigned alignment = 8) LLVM_NOEXCEPT { + unsigned alignment = 8) noexcept { return ::operator new(bytes, PR, alignment); } - void *operator new(size_t bytes, void *mem) LLVM_NOEXCEPT { return mem; } + void *operator new(size_t bytes, void *mem) noexcept { return mem; } void operator delete(void *ptr, PreprocessingRecord &PR, - unsigned alignment) LLVM_NOEXCEPT { + unsigned alignment) noexcept { return ::operator delete(ptr, PR, alignment); } - void operator delete(void *, std::size_t) LLVM_NOEXCEPT {} - void operator delete(void *, void *) LLVM_NOEXCEPT {} + void operator delete(void *, std::size_t) noexcept {} + void operator delete(void *, void *) noexcept {} private: // Make vanilla 'new' and 'delete' illegal for preprocessed entities. - void *operator new(size_t bytes) LLVM_NOEXCEPT; - void operator delete(void *data) LLVM_NOEXCEPT; + void *operator new(size_t bytes) noexcept; + void operator delete(void *data) noexcept; }; /// \brief Records the presence of a preprocessor directive. @@ -523,12 +523,12 @@ namespace clang { } // end namespace clang inline void *operator new(size_t bytes, clang::PreprocessingRecord &PR, - unsigned alignment) LLVM_NOEXCEPT { + unsigned alignment) noexcept { return PR.Allocate(bytes, alignment); } inline void operator delete(void *ptr, clang::PreprocessingRecord &PR, - unsigned) LLVM_NOEXCEPT { + unsigned) noexcept { PR.Deallocate(ptr); } diff --git a/clang/include/clang/Lex/Preprocessor.h b/clang/include/clang/Lex/Preprocessor.h index 66ff490de14..60add770b59 100644 --- a/clang/include/clang/Lex/Preprocessor.h +++ b/clang/include/clang/Lex/Preprocessor.h @@ -424,10 +424,10 @@ class Preprocessor : public RefCountedBase<Preprocessor> { public: MacroState() : MacroState(nullptr) {} MacroState(MacroDirective *MD) : State(MD) {} - MacroState(MacroState &&O) LLVM_NOEXCEPT : State(O.State) { + MacroState(MacroState &&O) noexcept : State(O.State) { O.State = (MacroDirective *)nullptr; } - MacroState &operator=(MacroState &&O) LLVM_NOEXCEPT { + MacroState &operator=(MacroState &&O) noexcept { auto S = O.State; O.State = (MacroDirective *)nullptr; State = S; diff --git a/clang/include/clang/Sema/Sema.h b/clang/include/clang/Sema/Sema.h index 78be700ec3a..1dd415d3497 100644 --- a/clang/include/clang/Sema/Sema.h +++ b/clang/include/clang/Sema/Sema.h @@ -2867,8 +2867,8 @@ private: TypoDiagnosticGenerator DiagHandler; TypoRecoveryCallback RecoveryHandler; TypoExprState(); - TypoExprState(TypoExprState&& other) LLVM_NOEXCEPT; - TypoExprState& operator=(TypoExprState&& other) LLVM_NOEXCEPT; + TypoExprState(TypoExprState &&other) noexcept; + TypoExprState &operator=(TypoExprState &&other) noexcept; }; /// \brief The set of unhandled TypoExprs and their associated state. diff --git a/clang/include/clang/Sema/SemaInternal.h b/clang/include/clang/Sema/SemaInternal.h index 76567f3b77f..a01e8d639f6 100644 --- a/clang/include/clang/Sema/SemaInternal.h +++ b/clang/include/clang/Sema/SemaInternal.h @@ -333,12 +333,12 @@ private: inline Sema::TypoExprState::TypoExprState() {} -inline Sema::TypoExprState::TypoExprState(TypoExprState &&other) LLVM_NOEXCEPT { +inline Sema::TypoExprState::TypoExprState(TypoExprState &&other) noexcept { *this = std::move(other); } -inline Sema::TypoExprState &Sema::TypoExprState::operator=( - Sema::TypoExprState &&other) LLVM_NOEXCEPT { +inline Sema::TypoExprState &Sema::TypoExprState:: +operator=(Sema::TypoExprState &&other) noexcept { Consumer = std::move(other.Consumer); DiagHandler = std::move(other.DiagHandler); RecoveryHandler = std::move(other.RecoveryHandler); |