diff options
author | Greg Clayton <gclayton@apple.com> | 2016-12-07 23:52:27 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2016-12-07 23:52:27 +0000 |
commit | 962364c605b5122c08bd247832a9fc0ad2096a60 (patch) | |
tree | 7f35cbd681701f4b8c109f9a7583e95936a05fbf /lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp | |
parent | 3ce7e99680bfcb021a4a125d40e9e0dbceb6e323 (diff) | |
download | bcm5719-llvm-962364c605b5122c08bd247832a9fc0ad2096a60.tar.gz bcm5719-llvm-962364c605b5122c08bd247832a9fc0ad2096a60.zip |
Fix an unannotated fallthrough that was causing a warning.
llvm-svn: 289000
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp')
-rw-r--r-- | lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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"); |