From 962364c605b5122c08bd247832a9fc0ad2096a60 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Wed, 7 Dec 2016 23:52:27 +0000 Subject: Fix an unannotated fallthrough that was causing a warning. llvm-svn: 289000 --- .../RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp') diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp index e8581a71a26..b0561863486 100644 --- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp +++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp @@ -55,7 +55,8 @@ bool registerRSDefaultTargetOpts(clang::TargetOptions &proto, proto.Triple = "i686--linux-android"; proto.CPU = "atom"; proto.Features.push_back("+long64"); - // Fallthrough for common x86 family features + // Fallthrough for common x86 family features + LLVM_FALLTHROUGH; case llvm::Triple::ArchType::x86_64: proto.Features.push_back("+mmx"); proto.Features.push_back("+sse"); -- cgit v1.2.3