summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-1223733.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/regress/regress-1223733.js')
-rw-r--r--deps/v8/test/mjsunit/regress/regress-1223733.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/deps/v8/test/mjsunit/regress/regress-1223733.js b/deps/v8/test/mjsunit/regress/regress-1223733.js
deleted file mode 100644
index be5fd915f4..0000000000
--- a/deps/v8/test/mjsunit/regress/regress-1223733.js
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2021 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.
-
-// Flags: --allow-natives-syntax --turboprop --turbo-dynamic-map-checks
-
-function main() {
- // Store something onto a function prototype so we will bailout of the
- // function.prototype load optimization in NativeContextSpecialization.
- isNaN.prototype = 14;
- const v14 = isNaN.prototype;
-}
-%PrepareFunctionForOptimization(main);
-main();
-%OptimizeFunctionOnNextCall(main);
-main();