Remove a debug assert

This commit is contained in:
Brian Carroll 2022-01-04 16:52:45 +00:00
parent 5e642c880c
commit ad95ea4a3b

View file

@ -180,7 +180,7 @@ impl<'a> CodeGenHelp<'a> {
) -> Option<Expr<'a>> {
use HelperOp::*;
debug_assert!(self.debug_recursion_depth < 10);
// debug_assert!(self.debug_recursion_depth < 100);
self.debug_recursion_depth += 1;
let layout = if matches!(called_layout, Layout::RecursivePointer) {