Bug 1280362 - Manually remove the remaining jit() call oddballs. r=arai

--HG--
extra : rebase_source : 6db6c39e41e25a70a729c909179692c0d16437eb
This commit is contained in:
Jeff Walden 2016-04-23 17:51:15 -07:00
Родитель b3a7935fdc
Коммит baa2446b74
5 изменённых файлов: 2 добавлений и 9 удалений

Просмотреть файл

@ -32,7 +32,6 @@ function getTestCaseResult(expected, actual)
function getFailedCases() {
for ( var i = 0; i < gTestcases.length; i++ ) {}
};
function jit(on) {}
var lfcode = new Array();
lfcode.push("\
var summary = 'decompilation of \"let with with\" ';\
@ -47,7 +46,6 @@ function test() {\
var w = 'r'.match(/r/);\
new Function('for (var j = 0; j < 1; ++j) { } ')();\
}\
jit(('Math.log'));\
reportCompare(expect, actual, summary);\
}\
");

Просмотреть файл

@ -1,8 +1,8 @@
function jit(on)
function Q(on)
{
options().match
}
function options() { return "methodjit"; }
gczeal(2);
for (i = 0; i < 100 ; ++i) { jit(jit(42, [])); }
for (i = 0; i < 100 ; ++i) { Q(Q(42, [])); }

Просмотреть файл

@ -20,8 +20,6 @@ function test()
printBugNumber(BUGNUMBER);
printStatus (summary);
jit (true);
for each (let j in [null, 2, 3]) { }

Просмотреть файл

@ -22,8 +22,6 @@ function test()
expect = actual = 'pass';
jit (true);
try
{
e = {}; for (j=0;j<3;++j) { 3 | e; } "PASS";

Просмотреть файл

@ -38,7 +38,6 @@ function mandelbrotValueOO (aC, aIterMax) {
}
function f(trace) {
jit(trace);
var start = Date.now();
const width = 60;
const height = 60;