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

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 // Compiled
     2 function TestCase(a) { }
     4 // Not compiled (try)
     5 function reportCompare (actual) {
     6   TestCase(actual);
     7   try   {  }  catch(ex)  {  }
     8 }
    10 // Compiled
    11 function addThis(bound) {
    12     actualvalues[bound] = undefined + actual;
    13     reportCompare(actualvalues[bound]);
    14 }
    16 var actual = '';
    17 var actualvalues = [];
    18 addThis(0);
    19 actual = NaN;
    20 addThis(1);

mercurial