aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaExpr.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-10-17 20:46:28 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-10-17 20:46:28 +0000
commite75ce16b4afd7f8a06f25c06bc47952b8bc1210d (patch)
tree59ad2eb0c688d1f49fdc4817423f1ec045ff3621 /lib/Sema/SemaExpr.cpp
parent88a4cfde0e0efefc40fbce3ae2c96191132218a8 (diff)
Add missing case to switch.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142246 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaExpr.cpp')
-rw-r--r--lib/Sema/SemaExpr.cpp1
1 files changed, 1 insertions, 0 deletions
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: