mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[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:
@@ -183,7 +183,7 @@ public:
|
||||
}
|
||||
|
||||
private:
|
||||
static const unsigned MaxDepth = 1024;
|
||||
static const unsigned MaxDepth = 768;
|
||||
|
||||
/// Called when the node tree in valid.
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user