From e75ce16b4afd7f8a06f25c06bc47952b8bc1210d Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Mon, 17 Oct 2011 20:46:28 +0000 Subject: [PATCH] Add missing case to switch. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142246 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaExpr.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index 6376f1f2d9..346228f6b7 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -10108,6 +10108,7 @@ ExprResult Sema::CheckPlaceholderExpr(Expr *E) { case BuiltinType::Long: case BuiltinType::LongLong: case BuiltinType::Int128: + case BuiltinType::Half: case BuiltinType::Float: case BuiltinType::Double: case BuiltinType::LongDouble: -- 2.40.0