Merge pull request #3941 from oderwat/hara-php-mnewString-fix

Fix for PHP mnewString()
This commit is contained in:
Andreas Rumpf
2016-03-06 02:04:22 +01:00

View File

@@ -263,9 +263,7 @@ proc toJSStr(s: string): cstring {.asmNoStackFrame, compilerproc.} =
proc mnewString(len: int): string {.asmNoStackFrame, compilerproc.} =
when defined(nimphp):
asm """
$result = array();
for($i = 0; $i < `len`; $i++) $result[] = chr(0);
return $result;
return str_repeat(chr(0),`len`);
"""
else:
asm """