From 7cda284aaf3fbe73e4400027adb9bb0c6260d757 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Wed, 14 Aug 1996 11:40:57 -0600 Subject: [PATCH] pa.c (print_operand): Use the right comparison operator for reversed EQ and NE comparisons. * pa/pa.c (print_operand): Use the right comparison operator for reversed EQ and NE comparisons. From-SVN: r12639 --- gcc/config/pa/pa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index cc0dd71a679..861efb32580 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -3236,9 +3236,9 @@ print_operand (file, x, code) switch (GET_CODE (x)) { case EQ: - fputs ("?=", file); break; + fputs ("=", file); break; case NE: - fputs ("!?=", file); break; + fputs ("!=", file); break; case GT: fputs ("!<=", file); break; case GE: -- 2.30.2