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
Fix build failure 'sizeof(clang::APValue::LV) <= DataSize': LV too big'
Ensure APValue::DataSize is bigger than APValue::LV. To do so,
this moves APValue::LV to APValue.h so that we can always allocate
DataSize to be bigger than LV. Previously, LV was hidden in the
source file and the type size of DataSize didn't take it into
account even though it has to be bigger than LV. This made the
implementation quite fragile to any change in the size of related
components.
rdar://137823177
0 commit comments