diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-06-22 02:50:42 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-06-22 02:50:50 +0200 |
commit | 4b0ba5e3f1b78b3c45a3f1576ed3d60f9a8b6d80 (patch) | |
tree | 2019e7f764acaaf4b5856febcffc6ae0eacf0a05 /compiler/passaux.nim | |
parent | 6b334770b5e310d8a237b88aed5d10380671f7d2 (diff) | |
download | Nim-4b0ba5e3f1b78b3c45a3f1576ed3d60f9a8b6d80.tar.gz |
C code generation now deterministic; fixes #4364
Diffstat (limited to 'compiler/passaux.nim')
-rw-r--r-- | compiler/passaux.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/passaux.nim b/compiler/passaux.nim index 9b9fdca4e..d4361a671 100644 --- a/compiler/passaux.nim +++ b/compiler/passaux.nim @@ -24,7 +24,7 @@ proc verboseProcess(context: PPassContext, n: PNode): PNode = # system.nim deactivates all hints, for verbosity:3 we want the processing # messages nonetheless, so we activate them again unconditionally: incl(msgs.gNotes, hintProcessing) - message(n.info, hintProcessing, $idgen.gBackendId) + message(n.info, hintProcessing, $idgen.gFrontendId) const verbosePass* = makePass(open = verboseOpen, process = verboseProcess) |