patch #977897 by Anders - IntOp shr & shl

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3576 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-06-25 15:24:20 +00:00
parent d05b8bc6ad
commit d1f241e6c8
3 changed files with 9 additions and 5 deletions

View file

@ -648,6 +648,8 @@ static int NSISCALL ExecuteEntry(entry *entry_)
case 8: v=v||v2; break;
case 9: v=v&&v2; break;
case 10: if (v2) v%=v2; else { v=0; exec_error++; } break;
case 11: v=v<<v2; break;
case 12: v=v>>v2; break;
}
myitoa(p,v);
}