From da37177ac252599c731589bf27d1e384403a047a Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 9 Aug 2019 10:12:32 +0200 Subject: [PATCH] make tests green again on 32bit systems --- compiler/semdata.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/semdata.nim b/compiler/semdata.nim index 464c55b7e3..7010d512a9 100644 --- a/compiler/semdata.nim +++ b/compiler/semdata.nim @@ -140,7 +140,7 @@ type unusedImports*: seq[(PSym, TLineInfo)] exportIndirections*: IntSet -template idPairToInt*(a, b: int): int = a * 10_000_000 + b +template idPairToInt*(a, b: int): int = a * 1_000_000 + b template config*(c: PContext): ConfigRef = c.graph.config