Per the guidance in https://llvm.org/docs/Atomics.html#atomics-and-ir-optimization, an atomic load from a constant global can be dropped, as it is not observable. Any write to the constant global would be UB.
IPSCCP will already drop such loads, but the main helper in Local doesn't recognize this currently. This is motivated by D118387.
nit: can be removed, unless they are volatile.?