2015-05-05 13:48:55 -07:00
|
|
|
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
// Flags: --allow-natives-syntax --always-turbofan --gc-interval=163 --stress-compaction
|
2015-05-05 13:48:55 -07:00
|
|
|
|
2016-01-20 09:45:45 -08:00
|
|
|
try { a = f();
|
|
|
|
} catch(e) {
|
|
|
|
}
|
|
|
|
var i = 0;
|
2015-05-05 13:48:55 -07:00
|
|
|
function f() {
|
2016-01-20 09:45:45 -08:00
|
|
|
try {
|
|
|
|
f();
|
|
|
|
} catch(e) {
|
|
|
|
i++;
|
|
|
|
[];
|
|
|
|
}
|
2015-05-05 13:48:55 -07:00
|
|
|
}
|
|
|
|
f();
|