mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
swift-module-digester: test -v mode when diagnosing ABI/API changes.
This commit is contained in:
@@ -941,9 +941,9 @@ class PrunePass : public MatchedNodeListener, public SDKTreeDiffPass {
|
||||
|
||||
static void debugMatch(SDKNode *Left, SDKNode *Right, NodeMatchReason Reason,
|
||||
llvm::raw_ostream &OS) {
|
||||
if (Left && isa<SDKNodeType>(Left))
|
||||
if (Left && !isa<SDKNodeDecl>(Left))
|
||||
return;
|
||||
if (Right && isa<SDKNodeType>(Right))
|
||||
if (Right && !isa<SDKNodeDecl>(Right))
|
||||
return;
|
||||
StringRef Arrow = " <--------> ";
|
||||
switch (Reason) {
|
||||
|
||||
Reference in New Issue
Block a user