| Index: src/runtime/runtime-test.cc
|
| diff --git a/src/runtime/runtime-test.cc b/src/runtime/runtime-test.cc
|
| index 0b4899fb65e7b44576f798b27666c89b4703c503..748fbc5db2ddb343a67e6d39a9df842a8c682af4 100644
|
| --- a/src/runtime/runtime-test.cc
|
| +++ b/src/runtime/runtime-test.cc
|
| @@ -680,7 +680,7 @@ RUNTIME_FUNCTION(Runtime_InNewSpace) {
|
| RUNTIME_FUNCTION(Runtime_IsAsmWasmCode) {
|
| SealHandleScope shs(isolate);
|
| DCHECK_EQ(1, args.length());
|
| - CONVERT_ARG_HANDLE_CHECKED(JSFunction, function, 0);
|
| + CONVERT_ARG_CHECKED(JSFunction, function, 0);
|
| if (!function->shared()->HasAsmWasmData()) {
|
| // Doesn't have wasm data.
|
| return isolate->heap()->false_value();
|
|
|