diff options
author | Araq <rumpf_a@web.de> | 2014-07-01 22:36:01 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-07-01 22:36:01 +0200 |
commit | b3f390bd481a4e4a3f56d8a689450392fa408779 (patch) | |
tree | 0baa940bf25bdb26484f39c399714c8cfd5bb2f6 | |
parent | daf9dd701ef63a67a84966cc52e60f2bf00304c0 (diff) | |
download | Nim-b3f390bd481a4e4a3f56d8a689450392fa408779.tar.gz |
fixes #751
-rw-r--r-- | compiler/ccgexprs.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/ccgexprs.nim b/compiler/ccgexprs.nim index e6b22819f..1874e33b8 100644 --- a/compiler/ccgexprs.nim +++ b/compiler/ccgexprs.nim @@ -1398,10 +1398,10 @@ proc genSetOp(p: BProc, e: PNode, d: var TLoc, op: TMagic) = of mIncl: var ts = "NI" & $(size * 8) binaryStmtInExcl(p, e, d, - "$1 |=((" & ts & ")(1)<<(($2)%(sizeof(" & ts & ")*8)));$n") + "$1 |= ((" & ts & ")1)<<(($2)%(sizeof(" & ts & ")*8));$n") of mExcl: var ts = "NI" & $(size * 8) - binaryStmtInExcl(p, e, d, "$1 &= ~((" & ts & ")(1) << (($2) % (sizeof(" & + binaryStmtInExcl(p, e, d, "$1 &= ~(((" & ts & ")1) << (($2) % (sizeof(" & ts & ")*8)));$n") of mCard: if size <= 4: unaryExprChar(p, e, d, "#countBits32($1)") |