From f143ae9b68cdd40dfb120094baaa702b810eb52c Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Sat, 1 Sep 2012 00:13:24 +0000 Subject: [PATCH] Changed the remaining dead asserts to llvm_unreachable. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163039 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaDecl.cpp | 12 +++++------- lib/Sema/SemaDeclCXX.cpp | 12 +++++------- lib/Sema/SemaType.cpp | 12 +++++------- 3 files changed, 15 insertions(+), 21 deletions(-) diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 93e07bef62..2582e13248 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -8217,15 +8217,13 @@ bool Sema::CheckEnumRedeclaration(SourceLocation EnumLoc, bool IsScoped, /// WARNING: Indexes apply to particular diagnostics only! /// /// \returns diagnostic %select index. -static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) -{ +static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) { switch (Tag) { - case TTK_Struct: return 0; - case TTK_Interface: return 1; - case TTK_Class: return 2; - default: assert("Invalid tag kind for redecl diagnostic!"); + case TTK_Struct: return 0; + case TTK_Interface: return 1; + case TTK_Class: return 2; + default: llvm_unreachable("Invalid tag kind for redecl diagnostic!"); } - return -1; } /// \brief Determine if tag kind is a class-key compatible with diff --git a/lib/Sema/SemaDeclCXX.cpp b/lib/Sema/SemaDeclCXX.cpp index ff1cbd14b6..2a221d8e5d 100644 --- a/lib/Sema/SemaDeclCXX.cpp +++ b/lib/Sema/SemaDeclCXX.cpp @@ -680,15 +680,13 @@ static bool CheckConstexprParameterTypes(Sema &SemaRef, /// WARNING: Indexes apply to particular diagnostics only! /// /// \returns diagnostic %select index. -static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) -{ +static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) { switch (Tag) { - case TTK_Struct: return 0; - case TTK_Interface: return 1; - case TTK_Class: return 2; - default: assert("Invalid tag kind for record diagnostic!"); + case TTK_Struct: return 0; + case TTK_Interface: return 1; + case TTK_Class: return 2; + default: llvm_unreachable("Invalid tag kind for record diagnostic!"); } - return -1; } // CheckConstexprFunctionDecl - Check whether a function declaration satisfies diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp index 0935e2e2e0..82dccfa5f4 100644 --- a/lib/Sema/SemaType.cpp +++ b/lib/Sema/SemaType.cpp @@ -4437,15 +4437,13 @@ bool Sema::RequireCompleteType(SourceLocation Loc, QualType T, /// WARNING: Indexes apply to particular diagnostics only! /// /// \returns diagnostic %select index. -static unsigned getLiteralDiagFromTagKind(TagTypeKind Tag) -{ +static unsigned getLiteralDiagFromTagKind(TagTypeKind Tag) { switch (Tag) { - case TTK_Struct: return 0; - case TTK_Interface: return 1; - case TTK_Class: return 2; - default: assert("Invalid tag kind for literal type diagnostic!"); + case TTK_Struct: return 0; + case TTK_Interface: return 1; + case TTK_Class: return 2; + default: llvm_unreachable("Invalid tag kind for literal type diagnostic!"); } - return -1; } /// @brief Ensure that the type T is a literal type. -- 2.40.0