diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-08-30 12:26:26 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-08-30 12:26:26 +0200 |
commit | f214aa5dbe2c4aa3e543aecc2b6ad96d7786862e (patch) | |
tree | dcf1a9a2d351b6ab9364f0cbd06a341a8935a706 /js/src/jit/shared | |
parent | 0bc2511432fe0cdcae92aae71576b6eb9bad7f5c (diff) | |
download | uxp-f214aa5dbe2c4aa3e543aecc2b6ad96d7786862e.tar.gz |
Revert "Bug 1444668 - Avoid allocating large AssemblerBuffers. r=luke, r=bbouvier, a=RyanVM"
This reverts commit 9472136272f01b858412f2d9d7854d2daa82496f.
Diffstat (limited to 'js/src/jit/shared')
-rw-r--r-- | js/src/jit/shared/IonAssemblerBuffer.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/js/src/jit/shared/IonAssemblerBuffer.h b/js/src/jit/shared/IonAssemblerBuffer.h index 3a65526968..cc20e26d21 100644 --- a/js/src/jit/shared/IonAssemblerBuffer.h +++ b/js/src/jit/shared/IonAssemblerBuffer.h @@ -181,10 +181,6 @@ class AssemblerBuffer protected: virtual Slice* newSlice(LifoAlloc& a) { - if (size() > MaxCodeBytesPerProcess - sizeof(Slice)) { - fail_oom(); - return nullptr; - } Slice* tmp = static_cast<Slice*>(a.alloc(sizeof(Slice))); if (!tmp) { fail_oom(); |