You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The clang ConstantArrayType has a getSize method which returns the number of elements in the array as an APInt but this is not exposed on the multiplier side. A workaround is to get the total size of the Type and divide it by the size of the element.
The text was updated successfully, but these errors were encountered:
This issue ultimately traces its roots back to PASTA. There, we'd perhaps want to add support for APInt in the form of gap multiprecision integers, so that PASTA's public API (headers) remains clang/llvm-dependency free.
The clang
ConstantArrayType
has a getSize method which returns the number of elements in the array as anAPInt
but this is not exposed on the multiplier side. A workaround is to get the total size of theType
and divide it by the size of the element.The text was updated successfully, but these errors were encountered: