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
Adding missing compound assignment operators |=, &=, ^=, would be an improvement that would make some code more concise. For example, in the VectorToSPIRV lowering process, we have some lines of code that could be simplified from:
auto memoryAccess = spirv::MemoryAccess::None
memoryAccess = memoryAccess | spirv::MemoryAccess::Aligned;