The virtual register containing the address for returned value on
stack should in the DAG be represented with a CopyFromReg node and not
a Register node. Otherwise, InstrEmitter will not make sure that it
ends up in the right register class for the target instruction.
SystemZ needs this, because the reg class for address registers is a
subset of the general 64 bit register class.
test/SystemZ/CodeGen/args-07.ll and args-04.ll updated to run with
-verify-machineinstrs.
Note: InstrEmitter will not check for proper regclass for a Register node, as it
does for a CopyFromReg. It seems that the Register nodes as they are handled
in InstrEmitter are intended for call / return phys reg operands which need to be
flagged as implicit. But since the DemoteReg is a virtual register, it therefore
seems it doesn't really need to be a Register node for any particular reason.