diff options
author | Jacek Sieka <arnetheduck@gmail.com> | 2018-11-26 02:47:39 -0600 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-11-26 09:47:39 +0100 |
commit | 87568830abe25a09d7c0947fbefa1d80b19868bd (patch) | |
tree | 92aa875f32c00c7458fe3635be7e0a8aeb43e034 /compiler/ast.nim | |
parent | ea5fc9f2040715788449e9031607eab0a1a4d8e7 (diff) | |
download | Nim-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.nim | 1 |
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 ------------------------------ |