diff options
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) |