diff options
author | Araq <rumpf_a@web.de> | 2019-08-09 10:12:32 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-08-09 10:12:32 +0200 |
commit | da37177ac252599c731589bf27d1e384403a047a (patch) | |
tree | 97228c2bdefbb5f2060393fc1e2b851b4f7e9b80 /compiler | |
parent | 3b8f7214603b7d7df2ecf38974997517222ac6f0 (diff) | |
download | Nim-da37177ac252599c731589bf27d1e384403a047a.tar.gz |
make tests green again on 32bit systems
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/semdata.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/semdata.nim b/compiler/semdata.nim index 464c55b7e..7010d512a 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 |