summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/pgo-bug1252120.js
blob: f25e9c9f79e45c43574ed8b8c8538a7964f53bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// |jit-test| --ion-pruning=on;

target = handler = {}
for (p of[new Proxy(target, handler)])
  evaluate("foo()");
function foo() {
    symbols = [Symbol]
    values = [NaN]
    for (comparator of[""])
        for (b of values) assertEq;
    for (comparator of[""])
        for (a of symbols)
            for (b of values) assertEq;
}