Commit a092957f by Richard Kenner

(print_operand, case 'H', 'S'): Delete unused.

From-SVN: r9033
parent 242e8072
......@@ -1040,14 +1040,6 @@ print_operand (file, x, code)
print_operand (file, x, 0);
return;
case 'H':
/* X must be a constant. Output the low order 5 bits plus 24. */
if (! INT_P (x))
output_operand_lossage ("invalid %%H value");
fprintf (file, "%d", (INT_LOWPART (x) + 24) & 31);
return;
case 'I':
/* Print `i' if this is a constant, else nothing. */
if (INT_P (x))
......@@ -1222,14 +1214,6 @@ print_operand (file, x, code)
fprintf (file, "%d", (32 - INT_LOWPART (x)) & 31);
return;
case 'S':
/* Low 5 bits of 31 - value */
if (! INT_P (x))
output_operand_lossage ("invalid %%S value");
fprintf (file, "%d", (31 - INT_LOWPART (x)) & 31);
return;
case 't':
/* Write 12 if this jump operation will branch if true, 4 otherwise.
All floating-point operations except NE branch true and integer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment