| Index: src/runtime/runtime-test.cc
|
| diff --git a/src/runtime/runtime-test.cc b/src/runtime/runtime-test.cc
|
| index 67c68b7f4c148f7cb608e2cfe25765e453c669d2..b46ebadbff6c0a6c866260faee185b8c002ad2e4 100644
|
| --- a/src/runtime/runtime-test.cc
|
| +++ b/src/runtime/runtime-test.cc
|
| @@ -266,6 +266,13 @@ RUNTIME_FUNCTION(Runtime_SetFlags) {
|
| }
|
|
|
|
|
| +RUNTIME_FUNCTION(Runtime_HasAllocationSiteTransitioning) {
|
| + SealHandleScope shs(isolate);
|
| + DCHECK(args.length() == 0);
|
| + return Smi::FromInt(FLAG_allocation_site_transitioning);
|
| +}
|
| +
|
| +
|
| RUNTIME_FUNCTION(Runtime_Abort) {
|
| SealHandleScope shs(isolate);
|
| DCHECK(args.length() == 1);
|
|
|