summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/testShiftSameBacking.js
blob: 13e27c29eb8dcf3971667056442f849a44be30e4 (plain)
1
2
3
4
5
6
7
8
9
10
11

function f(a) {
    var x = a;
    var y = x;

    assertEq((x << y), (a << a));
    assertEq((y << x), (a << a));
}

f(2);