summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug729573.js
blob: f8cf3318dfbc1129586d1dd78422ea60aca8100a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function TestCase(n, d, e, a) {
  return function writeHeaderToLog( string ) {};
}
var SECTION = "11.7.2";
for ( power = 0; power <= 32; power++ ) {
  shiftexp = Math.pow( 2, power );
  for ( addexp = 0; addexp <= 32; addexp++ ) {
    new TestCase( SECTION, SignedRightShift( shiftexp, addexp ), shiftexp >> addexp );
  }
}
function ToInt32BitString( n ) {
  var b = "";
  return b;
}
function SignedRightShift( s, a ) {
  s = ToInt32BitString( s );
  s = s.substring( 0, 1 | Math && 0xffffffff + 2 );
}