Fix an unannotated fallthrough that was causing a warning.
authorGreg Clayton <gclayton@apple.com>
Wed, 7 Dec 2016 23:52:27 +0000 (23:52 +0000)
committerGreg Clayton <gclayton@apple.com>
Wed, 7 Dec 2016 23:52:27 +0000 (23:52 +0000)
llvm-svn: 289000

lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp

index e8581a7..b056186 100644 (file)
@@ -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");