From 1f49997a41184b77893950b460573ee7731b0cbc Mon Sep 17 00:00:00 2001 From: Sven van Haastregt Date: Tue, 27 Mar 2018 14:57:56 +0000 Subject: [PATCH] Drop spurious break; NFC git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@328626 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaChecking.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp index 9c0a16c50a..8686700a05 100644 --- a/lib/Sema/SemaChecking.cpp +++ b/lib/Sema/SemaChecking.cpp @@ -1209,7 +1209,6 @@ Sema::CheckBuiltinFunctionCall(FunctionDecl *FDecl, unsigned BuiltinID, if (SemaOpenCLBuiltinKernelWorkGroupSize(*this, TheCall)) return ExprError(); break; - break; case Builtin::BIget_kernel_max_sub_group_size_for_ndrange: case Builtin::BIget_kernel_sub_group_count_for_ndrange: if (SemaOpenCLBuiltinNDRangeAndBlock(*this, TheCall)) -- 2.40.0