[Tests][Demangling] Reduce maximum recursion depth for NodePrinter.

At MaxDepth 1024, NodePrinter will blow the stack on a debug build.
Reduce it to 768.

rdar://84615816
This commit is contained in:
Alastair Houghton
2021-10-26 17:12:14 +01:00
parent c209f52b9c
commit 50c55ce4d9
2 changed files with 2 additions and 2 deletions

View File

@@ -183,7 +183,7 @@ public:
}
private:
static const unsigned MaxDepth = 1024;
static const unsigned MaxDepth = 768;
/// Called when the node tree in valid.
///