* pa.c (print_operand): Always use "<>" instead of "!=".

From-SVN: r3132
This commit is contained in:
Jeff Law 1993-01-06 16:14:43 -07:00
parent 8c0a7019c9
commit cfb0c60bf5
1 changed files with 2 additions and 10 deletions

View File

@ -1957,11 +1957,7 @@ print_operand (file, x, code)
case EQ:
fprintf (file, "="); break;
case NE:
if (code == 'C')
fprintf (file, "<>");
else
fprintf (file, "!=");
break;
fprintf (file, "<>"); break;
case GT:
fprintf (file, ">"); break;
case GE:
@ -1989,11 +1985,7 @@ print_operand (file, x, code)
switch (GET_CODE (x))
{
case EQ:
if (code == 'N')
fprintf (file, "<>");
else
fprintf (file, "!=");
break;
fprintf (file, "<>"); break;
case NE:
fprintf (file, "="); break;
case GT: