Backed out changeset 607cfbb06eb8 (bug 1153498) for WinXP debug jit-test perma-timeouts.

CLOSED TREE
This commit is contained in:
Ryan VanderMeulen 2015-04-14 11:08:34 -04:00
Родитель e75dc71bd7
Коммит 76056920ad
2 изменённых файлов: 2 добавлений и 12 удалений

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

@ -1,10 +0,0 @@
// |jit-test| allow-oom; allow-unhandlable-oom
if (!("oomAfterAllocations" in this && "gczeal" in this))
quit();
gczeal(0);
"".search(function() {});
r = /x/;
x = [/y/];
oomAfterAllocations(5);
x.v = function() {};
a = /z/;

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

@ -119,7 +119,7 @@ class RegExpShared
struct RegExpCompilation
{
RelocatablePtrJitCode jitCode;
HeapPtrJitCode jitCode;
uint8_t* byteCode;
RegExpCompilation() : byteCode(nullptr) {}
@ -131,7 +131,7 @@ class RegExpShared
};
/* Source to the RegExp, for lazy compilation. */
RelocatablePtrAtom source;
HeapPtrAtom source;
RegExpFlag flags;
size_t parenCount;