Modify FreeObjectSet setType_ from int32 to int8

Description:Modify FreeObjectSet setType_ from int32 to int8
Issue:https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/IB5QHY?from=project-issue

Signed-off-by: dingwen <dingwen6@huawei.com>
Change-Id: I52a846a1821eb85282b6e55e9de38a40542513a6
This commit is contained in:
dingwen 2024-11-20 15:13:26 +08:00
parent 924f7eaa9b
commit 46bc318aa6

View File

@ -22,7 +22,7 @@
#include "ecmascript/mem/jit_fort_memdesc.h"
namespace panda::ecmascript {
using SetType = int32_t;
using SetType = int8_t;
class FreeObject;