add 'H' to print_operand for six-bit mask

From-SVN: r11357
This commit is contained in:
David Edelsohn 1996-02-28 00:19:30 +00:00
parent 685f39066b
commit 64305719ea

View File

@ -2054,6 +2054,15 @@ print_operand (file, x, code)
print_operand (file, x, 0);
return;
case 'H':
/* If constant, output low-order six bits. Otherwise,
write normally. */
if (INT_P (x))
fprintf (file, "%d", INT_LOWPART (x) & 63);
else
print_operand (file, x, 0);
return;
case 'I':
/* Print `i' if this is a constant, else nothing. */
if (INT_P (x))