1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-11 02:13:38 +09:00

Don't have getVectorTByteLength() return 0 for the time being (#89802)

This commit is contained in:
Tanner Gooding 2023-08-01 15:20:32 -07:00 committed by GitHub
parent 11126f8595
commit 4448e41d11
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8741,7 +8741,10 @@ private:
}
else
{
return 0;
// TODO: We should be returning 0 here, but there are a number of
// places that don't quite get handled correctly in that scenario
return XMM_REGSIZE_BYTES;
}
#elif defined(TARGET_ARM64)
if (compExactlyDependsOn(InstructionSet_VectorT128))
@ -8750,7 +8753,10 @@ private:
}
else
{
return 0;
// TODO: We should be returning 0 here, but there are a number of
// places that don't quite get handled correctly in that scenario
return FP_REGSIZE_BYTES;
}
#else
assert(!"getVectorTByteLength() unimplemented on target arch");