| Index: src/runtime/runtime-test.cc
|
| diff --git a/src/runtime/runtime-test.cc b/src/runtime/runtime-test.cc
|
| index 8100d2c75982d316e6b8326930c86e553bb16d6f..d72ea6da6838c5b2c8904519a7360384144737eb 100644
|
| --- a/src/runtime/runtime-test.cc
|
| +++ b/src/runtime/runtime-test.cc
|
| @@ -420,8 +420,8 @@
|
| SealHandleScope shs(isolate);
|
| DCHECK(args.length() == 2 || args.length() == 3);
|
| #ifdef DEBUG
|
| - CONVERT_INT32_ARG_CHECKED(interval, 0);
|
| - CONVERT_INT32_ARG_CHECKED(timeout, 1);
|
| + CONVERT_SMI_ARG_CHECKED(interval, 0);
|
| + CONVERT_SMI_ARG_CHECKED(timeout, 1);
|
| isolate->heap()->set_allocation_timeout(timeout);
|
| FLAG_gc_interval = interval;
|
| if (args.length() == 3) {
|
|
|