| Index: src/runtime/runtime-test.cc
|
| diff --git a/src/runtime/runtime-test.cc b/src/runtime/runtime-test.cc
|
| index 4fdb2ea8b176c4ded30bf0436d65c41f1ece3284..2c51879307be128ba982ff7f34683dbb1e2de3dd 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) {
|
|
|