summary refs log tree commit diff stats
path: root/compiler/passaux.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-06-22 02:50:42 +0200
committerAndreas Rumpf <rumpf_a@web.de>2016-06-22 02:50:50 +0200
commit4b0ba5e3f1b78b3c45a3f1576ed3d60f9a8b6d80 (patch)
tree2019e7f764acaaf4b5856febcffc6ae0eacf0a05 /compiler/passaux.nim
parent6b334770b5e310d8a237b88aed5d10380671f7d2 (diff)
downloadNim-4b0ba5e3f1b78b3c45a3f1576ed3d60f9a8b6d80.tar.gz
C code generation now deterministic; fixes #4364
Diffstat (limited to 'compiler/passaux.nim')
-rw-r--r--compiler/passaux.nim2
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)