summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2019-09-30 13:08:08 +0000
committerRaphael Isemann <teemperor@gmail.com>2019-09-30 13:08:08 +0000
commit9b034293fa5d2dfdaa4dd894b88ce859f9042954 (patch)
tree2ed31f40f4174040979de2ac5c879dd2cf1c4bc4
parentbfec04562630266477080109a94c776f02b645c3 (diff)
downloadbcm5719-llvm-9b034293fa5d2dfdaa4dd894b88ce859f9042954.tar.gz
bcm5719-llvm-9b034293fa5d2dfdaa4dd894b88ce859f9042954.zip
[lldb][NFC][modern-type-lookup] Remove while(false) behind if() {}
This was originally a 'do { ... } while (false);' like in the rest of the function, but the do was refactored into an 'if' without also removing the trailing 'while(false);' llvm-svn: 373206
-rw-r--r--lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
index 027010699bf..9d34f69a7af 100644
--- a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
+++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
@@ -129,8 +129,6 @@ void ClangASTSource::InstallASTContext(clang::ASTContext &ast_context,
*scratch_ast_context->getFileManager(),
scratch_ast_context->GetOriginMap()});
}
- while (false)
- ;
m_merger_up =
std::make_unique<clang::ExternalASTMerger>(target, sources);
OpenPOWER on IntegriCloud