Skip to content

Commit f5fd678

Browse files
committed
[AST Verifier] Temporarily disable an archetype context check.
Something in the interface between LLDB and Swift is causing this check to fire. Disable it temporarily while we work on that interface.
1 parent b2b69e8 commit f5fd678

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AST/ASTVerifier.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ class Verifier : public ASTWalker {
582582
abort();
583583
}
584584

585-
bool foundError = type->hasArchetype() &&
585+
bool foundError = false &&
586586
type->getCanonicalType().findIf([&](Type type) -> bool {
587587
if (auto archetype = type->getAs<ArchetypeType>()) {
588588
// Only visit each archetype once.

0 commit comments

Comments
 (0)