Rename required register numbers for ByteCodeBlock

Signed-off-by: HyukWoo Park <hyukwoo.park@samsung.com>
This commit is contained in:
HyukWoo Park 2022-03-29 19:47:14 +09:00 committed by Boram Bae
commit d0716850af
10 changed files with 52 additions and 52 deletions

View file

@ -83,7 +83,7 @@ NEVER_INLINE void ScriptFunctionObject::generateByteCodeBlock(ExecutionState& st
if (hasTag(g_scriptFunctionObjectTag)) {
auto cb = m_codeBlock->asInterpretedCodeBlock();
auto byteCb = cb->byteCodeBlock();
size_t registerFileSize = byteCb->m_requiredRegisterFileSizeInValueSize;
size_t registerFileSize = byteCb->m_requiredTotalRegisterNumber;
bool isStrict = cb->isStrict();
bool shouldClearStack = byteCb->m_shouldClearStack;