From 2574084c30e7171eb1b26d67688aa1d4290824ba Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 16 Sep 2013 01:58:47 +0000 Subject: [PATCH] Prune "return" after llvm_unreachable(). It was redundant. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@190774 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/ASTContext.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index 05d8354793..ee71116c58 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -706,7 +706,6 @@ static bool isAddrSpaceMapManglingEnabled(const TargetInfo &TI, return false; } llvm_unreachable("getAddressSpaceMapMangling() doesn't cover anything."); - return false; } ASTContext::ASTContext(LangOptions& LOpts, SourceManager &SM, -- 2.40.0