diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2020-07-15 23:04:18 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2020-07-15 23:04:18 +0200 |
commit | 617c1f16d70657fbe4a69d76a2f00b84560af15a (patch) | |
tree | 29015ceca55dbc8b6d0699ec758790780a2de4c8 | |
parent | c5358b0d4b1d27db04b974a0183c9b7312bc7bdc (diff) | |
download | Nim-617c1f16d70657fbe4a69d76a2f00b84560af15a.tar.gz |
disable debug output
-rw-r--r-- | compiler/cursor_inference.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/cursor_inference.nim b/compiler/cursor_inference.nim index 7806a535f..e0999b5be 100644 --- a/compiler/cursor_inference.nim +++ b/compiler/cursor_inference.nim @@ -97,7 +97,7 @@ proc getCursors(c: Con): IntSet = break doAdd when true: result.incl cur.s.id - when true: + when false: echo "computed as a cursor ", cur.s, " ", cur.deps, " ", c.config $ cur.s.info proc analyseAsgn(c: var Con; dest: var Cursor; n: PNode) = |