From eddbe03075e86c042bed71cdf81a63e7fcda11dd Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 21 Jul 2007 04:57:45 +0000 Subject: [PATCH] fix a warning on some compilers git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40139 91177308-0d34-0410-b5e6-96231b3b80d8 --- Sema/SemaExpr.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Sema/SemaExpr.cpp b/Sema/SemaExpr.cpp index fc4bc865cc..7ba795f47e 100644 --- a/Sema/SemaExpr.cpp +++ b/Sema/SemaExpr.cpp @@ -80,6 +80,7 @@ Sema::ExprResult Sema::ParseIdentifierExpr(Scope *S, SourceLocation Loc, return Diag(Loc, diag::err_unexpected_typedef, II.getName()); assert(0 && "Invalid decl"); + abort(); } Sema::ExprResult Sema::ParseSimplePrimaryExpr(SourceLocation Loc, -- 2.50.1