diff options
author | Jacek Sieka <arnetheduck@gmail.com> | 2016-08-09 22:54:27 +0800 |
---|---|---|
committer | Jacek Sieka <arnetheduck@gmail.com> | 2016-08-09 22:54:27 +0800 |
commit | 3cd4cf4320cba2795d2a9021c55a20cbbe2b04ae (patch) | |
tree | b7e24066afbe161455c3bd50797535f0a05434fc /compiler/ccgcalls.nim | |
parent | 981a8950c61afb7814976333945b53f1799ad81a (diff) | |
download | Nim-3cd4cf4320cba2795d2a9021c55a20cbbe2b04ae.tar.gz |
remove unused stuff
Diffstat (limited to 'compiler/ccgcalls.nim')
-rw-r--r-- | compiler/ccgcalls.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/ccgcalls.nim b/compiler/ccgcalls.nim index 408a0c09c..48157925c 100644 --- a/compiler/ccgcalls.nim +++ b/compiler/ccgcalls.nim @@ -411,7 +411,7 @@ proc genPatternCall(p: BProc; ri: PNode; pat: string; typ: PType): Rope = add(result, substr(pat, start, i - 1)) proc genInfixCall(p: BProc, le, ri: PNode, d: var TLoc) = - var op, a: TLoc + var op: TLoc initLocExpr(p, ri.sons[0], op) # getUniqueType() is too expensive here: var typ = skipTypes(ri.sons[0].typ, abstractInst) @@ -458,7 +458,7 @@ proc genInfixCall(p: BProc, le, ri: PNode, d: var TLoc) = proc genNamedParamCall(p: BProc, ri: PNode, d: var TLoc) = # generates a crappy ObjC call - var op, a: TLoc + var op: TLoc initLocExpr(p, ri.sons[0], op) var pl = ~"[" # getUniqueType() is too expensive here: |