js/src/jit-test/tests/ion/bug905999.js

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 // |jit-test| ion-eager
     2 function reportCompare (expected) {
     3   typeof expected;
     4 }
     5 var expect = 'No Crash';
     6 var array = new Array(10);
     7 for (var i = 0; i != array.length; ++i) {
     8   gc();
     9 }
    10 var expect = array.length;
    11 reportCompare(expect);

mercurial