Index: test/cctest/compiler/test-run-jsops.cc |
diff --git a/test/cctest/compiler/test-run-jsops.cc b/test/cctest/compiler/test-run-jsops.cc |
index 9a2c4679a0ac2366d5e8fe786bebc87ebb92b4b9..b68fc1cdde2f0581e4e11140289bbf4aa89a1be8 100644 |
--- a/test/cctest/compiler/test-run-jsops.cc |
+++ b/test/cctest/compiler/test-run-jsops.cc |
@@ -394,17 +394,6 @@ TEST(GlobalLoad) { |
} |
-TEST(GlobalStoreSloppy) { |
- FLAG_legacy_const = true; |
- FunctionTester T("(function(a,b) { g = a + b; return g; })"); |
- |
- T.CheckCall(T.Val(33), T.Val(22), T.Val(11)); |
- CompileRun("delete g"); |
- CompileRun("const g = 23"); |
- T.CheckCall(T.Val(23), T.Val(55), T.Val(44)); |
-} |
- |
- |
TEST(GlobalStoreStrict) { |
FunctionTester T("(function(a,b) { 'use strict'; g = a + b; return g; })"); |