ROCm device libs can emit a s_sendmsg_rtn w/ the +gfx11-insts attribute, and it counts on the optimizer to remove the call if the GPU is <GFX11.
When built at O0 it caused codegen issues as Clang allowed this intrinsic to go through with just +gfx11-insts, but the backend wanted the GPU to be >=GFX11 as well.
This patch allows selecting that intrinsic when just the +gfx11-insts attribute is present.
I'm surprised this is necessary. How was this missing before? I thought the encoding didn't change in 11?