Bug 449978 – TM: trace some more builtins for string-validate-input

This commit is contained in:
Robert Sayre
2008-08-09 21:47:52 -04:00
parent 3e0c29e6ce
commit c03c77b288
5 changed files with 21 additions and 7 deletions

View File

@@ -143,6 +143,11 @@ jsdouble FASTCALL builtin_Math_cos(jsdouble d)
return cos(d);
}
jsdouble FASTCALL builtin_Math_floor(jsdouble d)
{
return floor(d);
}
jsdouble FASTCALL builtin_Math_pow(jsdouble d, jsdouble p)
{
#ifdef NOTYET