diff options
author | Andreas Rumpf <andreas@andreas-desktop> | 2010-07-29 21:30:04 +0200 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-desktop> | 2010-07-29 21:30:04 +0200 |
commit | ff02ce2d50d8a4b445f9fba6076527c3db62425c (patch) | |
tree | 065d5ecddb38f871e516b49c333f565b6cba9b31 /rod/magicsys.nim | |
parent | 804e2ac89d378b87e0ec8c723f607aa4271c57bb (diff) | |
download | Nim-ff02ce2d50d8a4b445f9fba6076527c3db62425c.tar.gz |
handling of compiler procs improved for DLL generation
Diffstat (limited to 'rod/magicsys.nim')
-rwxr-xr-x | rod/magicsys.nim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/rod/magicsys.nim b/rod/magicsys.nim index 58de1d795..1d758dcde 100755 --- a/rod/magicsys.nim +++ b/rod/magicsys.nim @@ -1,7 +1,7 @@ # # # The Nimrod Compiler -# (c) Copyright 2009 Andreas Rumpf +# (c) Copyright 2010 Andreas Rumpf # # See the file "copying.txt", included in this # distribution, for details about the copyright. @@ -69,8 +69,7 @@ proc getSysType(kind: TTypeKind): PType = if result == nil: InternalError("type not found: " & $kind) proc getCompilerProc(name: string): PSym = - var ident: PIdent - ident = getIdent(name, getNormalizedHash(name)) + var ident = getIdent(name, getNormalizedHash(name)) result = StrTableGet(compilerprocs, ident) if result == nil: result = StrTableGet(rodCompilerProcs, ident) |