The detection of writes to reserved registers in inline asm cover the
three cases: input, output, or clobber operands. In the input case,
however, all uses are flagged as writes, even when the register is only
read from.
This patch removes the buggy part that handles input operands.
It seems that this case should be handled in clang instead, as the IR
(and codegen) stage is too late to properly detect writes to input
operands.