diff options
author | Araq <rumpf_a@web.de> | 2019-02-07 12:12:20 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-02-07 12:12:20 +0100 |
commit | d5da450100f35008df06ecf812f1eeabda05d285 (patch) | |
tree | c38203bbe16f2d656fec022f4197eeab5eb06097 | |
parent | 6f412fc6cb5e2065bca7f3dae8e9594ba26ac610 (diff) | |
download | Nim-d5da450100f35008df06ecf812f1eeabda05d285.tar.gz |
helpers2 now has a real name
-rw-r--r-- | compiler/cgen.nim | 2 | ||||
-rw-r--r-- | compiler/semfold.nim | 2 | ||||
-rw-r--r-- | lib/system/chcks.nim | 2 | ||||
-rw-r--r-- | lib/system/indexerrors.nim (renamed from lib/system/helpers2.nim) | 0 |
4 files changed, 3 insertions, 3 deletions
diff --git a/compiler/cgen.nim b/compiler/cgen.nim index d020b1bd7..4abefe463 100644 --- a/compiler/cgen.nim +++ b/compiler/cgen.nim @@ -16,7 +16,7 @@ import condsyms, rodutils, renderer, idgen, cgendata, ccgmerge, semfold, aliases, lowerings, tables, sets, ndi, lineinfos, pathutils, transf -import system/helpers2 +import system/indexerrors when not defined(leanCompiler): import semparallel diff --git a/compiler/semfold.nim b/compiler/semfold.nim index 2a2942191..237a5127a 100644 --- a/compiler/semfold.nim +++ b/compiler/semfold.nim @@ -15,7 +15,7 @@ import nversion, platform, math, msgs, os, condsyms, idents, renderer, types, commands, magicsys, modulegraphs, strtabs, lineinfos -import system/helpers2 +import system/indexerrors proc newIntNodeT*(intVal: BiggestInt, n: PNode; g: ModuleGraph): PNode = case skipTypes(n.typ, abstractVarRange).kind diff --git a/lib/system/chcks.nim b/lib/system/chcks.nim index 6f4e8ce37..0840d863a 100644 --- a/lib/system/chcks.nim +++ b/lib/system/chcks.nim @@ -8,7 +8,7 @@ # # Implementation of some runtime checks. -import system/helpers2 +import system/indexerrors proc raiseRangeError(val: BiggestInt) {.compilerproc, noinline.} = when hostOS == "standalone": diff --git a/lib/system/helpers2.nim b/lib/system/indexerrors.nim index 8bd69ad71..8bd69ad71 100644 --- a/lib/system/helpers2.nim +++ b/lib/system/indexerrors.nim |