diff options
author | John Hodge <tpg@mutabah.net> | 2016-07-17 15:01:01 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-07-17 15:01:01 +0800 |
commit | e912058e6cfeb4ace0222c5ee8c4855043c7ef7d (patch) | |
tree | 0d506528586e0facfd10e7e6f3bf775dada34370 | |
parent | 2f3952595461fde1c748419b61f453a45f59aecf (diff) | |
download | mrust-e912058e6cfeb4ace0222c5ee8c4855043c7ef7d.tar.gz |
HIR Typecheck CS - (minor) Log number of passes required
-rw-r--r-- | src/hir_typeck/expr_cs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir_typeck/expr_cs.cpp b/src/hir_typeck/expr_cs.cpp index b0b0d4c4..d48bf8b2 100644 --- a/src/hir_typeck/expr_cs.cpp +++ b/src/hir_typeck/expr_cs.cpp @@ -3337,7 +3337,7 @@ void Typecheck_Code_CS(const typeck::ModuleState& ms, t_args& args, const ::HIR: // - Validate typeck { - DEBUG("==== VALIDATE ===="); + DEBUG("==== VALIDATE ==== (" << count << " rounds)"); context.dump(); ExprVisitor_Apply visitor { context.m_ivars }; |