summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug836705.js
blob: aa13c082e179f37953e43f099d9b5f49aa48d8c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Object.prototype[3] = 3;
var sjcl = {
    cipher: {},
};
sjcl.cipher.aes = function (a) {
    d = a.slice(0);
    for (a=0; a < 60; a++) {
        c = d[a - 1];
    }
};
new sjcl.cipher.aes([0xffffffff, 0xffffffff]);