[PATCH] D64556: [clangd] Fix an assertion crash in "ExtractVariable" tweak
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 11 04:37:04 PDT 2019
hokein updated this revision to Diff 209172.
hokein marked an inline comment as done.
hokein added a comment.
Address comment.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D64556/new/
https://reviews.llvm.org/D64556
Files:
clang-tools-extra/clangd/Selection.cpp
clang-tools-extra/clangd/refactor/tweaks/ExtractVariable.cpp
clang-tools-extra/clangd/unittests/TweakTests.cpp
Index: clang-tools-extra/clangd/unittests/TweakTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/TweakTests.cpp
+++ clang-tools-extra/clangd/unittests/TweakTests.cpp
@@ -313,6 +313,14 @@
while(a < ^3);
}
)cpp");
+ // Should not crash.
+ checkNotAvailable(ID, R"cpp(
+ template<typename T, typename ...Args>
+ struct Test<T, Args...> {
+ Test(const T &v) :val(^) {}
+ T val;
+ };
+ )cpp");
checkNotAvailable(ID, R"cpp(
int xyz(int a = ^1) {
return 1;
Index: clang-tools-extra/clangd/refactor/tweaks/ExtractVariable.cpp
===================================================================
--- clang-tools-extra/clangd/refactor/tweaks/ExtractVariable.cpp
+++ clang-tools-extra/clangd/refactor/tweaks/ExtractVariable.cpp
@@ -81,7 +81,7 @@
// FIXME: Ignore assignment (a = 1) Expr since it is extracted as dummy = a =
static bool isExtractableExpr(const clang::Expr *Expr) {
if (Expr) {
- const Type *ExprType = Expr->getType().getTypePtr();
+ const Type *ExprType = Expr->getType().getTypePtrOrNull();
// FIXME: check if we need to cover any other types
if (ExprType)
return !ExprType->isVoidType();
Index: clang-tools-extra/clangd/Selection.cpp
===================================================================
--- clang-tools-extra/clangd/Selection.cpp
+++ clang-tools-extra/clangd/Selection.cpp
@@ -358,13 +358,10 @@
const Node *SelectionTree::commonAncestor() const {
if (!Root)
return nullptr;
- for (const Node *Ancestor = Root;; Ancestor = Ancestor->Children.front()) {
- if (Ancestor->Selected || Ancestor->Children.size() > 1)
- return Ancestor;
- // The tree only contains ancestors of the interesting nodes.
- assert(!Ancestor->Children.empty() && "bad node in selection tree");
- }
- return nullptr;
+ const Node* Ancestor = Root;
+ while (Ancestor->Children.size() == 1 && !Ancestor->Selected)
+ Ancestor = Ancestor->Children.front();
+ return Ancestor;
}
} // namespace clangd
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D64556.209172.patch
Type: text/x-patch
Size: 2069 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190711/d3078282/attachment-0001.bin>
More information about the cfe-commits
mailing list