Closed
Description
e.g. CallInfo.h, is following "unused" patch applicable to xplat x64?
CallInfo(CallFlags flags, ushort count)
: Flags(flags)
, Count(count)
#ifdef _WIN64
, unused(0)
#endif
{
}
// Assumes big-endian layout
// If the size of the count is changed, change should happen at following places also
// - scriptdirect.idl
// - LowererMDArch::LoadInputParamCount
//
unsigned Count : 24;
CallFlags Flags : 8;
#ifdef _WIN64
unsigned unused : 32;
#endif