diff options
author | Chris Lattner <sabre@nondot.org> | 2007-07-21 04:57:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-07-21 04:57:45 +0000 |
commit | eddbe03075e86c042bed71cdf81a63e7fcda11dd (patch) | |
tree | 29638185ba0d1104899027866c434ac9a08a5faf | |
parent | a84538ea2b16bbccab64367e16c93aa6b8bb0169 (diff) |
fix a warning on some compilers
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40139 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Sema/SemaExpr.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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, |