Matteo Bruni (@Mystral) commented about dlls/d3dcompiler_43/blob.c:
} if (part > D3D_BLOB_TEST_COMPILE_PERF || (part < D3D_BLOB_TEST_ALTERNATE_SHADER && part > D3D_BLOB_XNA_SHADER))
Preexisting issue, but since it's affected by this... Apparently this check was never updated since its introduction back in ec698dea6641 (and specifically to account for 6ad18ca33a73), so it should probably look like this: ```suggestion:-1+0 if (part > D3D_BLOB_TEST_COMPILE_REPORT || (part < D3D_BLOB_TEST_ALTERNATE_SHADER && part > D3D_BLOB_DEBUG_NAME)) ```