summary refs log tree commit diff stats
path: root/compiler/ast.nim
diff options
context:
space:
mode:
authorJacek Sieka <arnetheduck@gmail.com>2018-11-26 02:47:39 -0600
committerAndreas Rumpf <rumpf_a@web.de>2018-11-26 09:47:39 +0100
commit87568830abe25a09d7c0947fbefa1d80b19868bd (patch)
tree92aa875f32c00c7458fe3635be7e0a8aeb43e034 /compiler/ast.nim
parentea5fc9f2040715788449e9031607eab0a1a4d8e7 (diff)
downloadNim-87568830abe25a09d7c0947fbefa1d80b19868bd.tar.gz
Remove dead code (#9777)
* gc/gc2: remove unused ref counting stuff
* also removes some false threading support - hasSharedHeap is always
false in gc/gc2
* gc: remove some threading cruft
* remove asgnRefNoCycle
* compiler: remove TLoc.dup (unused)
Diffstat (limited to 'compiler/ast.nim')
-rw-r--r--compiler/ast.nim1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim
index 6a73df3c7..e509d2ceb 100644
--- a/compiler/ast.nim
+++ b/compiler/ast.nim
@@ -768,7 +768,6 @@ type
     flags*: TLocFlags         # location's flags
     lode*: PNode              # Node where the location came from; can be faked
     r*: Rope                  # rope value of location (code generators)
-    dup*: Rope                # duplicated location for precise stack scans
 
   # ---------------- end of backend information ------------------------------