The coalescer eliminates copies from reserved registers of the form:
%vregX = COPY %rY
when %rY is a reserved physreg. However this transformation may be invalid if %rY has non-reserved subregister for which we will miss liveness information. Be conservative in this case and do not coalesce.
The test requires https://reviews.llvm.org/D26648 to work.