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:
parent
11126f8595
commit
4448e41d11
1 changed files with 8 additions and 2 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue