aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1993-01-06 16:14:43 -0700
committerJeff Law <law@gcc.gnu.org>1993-01-06 16:14:43 -0700
commitcfb0c60bf5937ac00f8032965c6199ab7c92e109 (patch)
treeafe7fc4c37c009652651644a402770698bbaa2a0 /gcc
parent8c0a7019c9734ef79c02251923102a611414e44f (diff)
downloadgcc-cfb0c60bf5937ac00f8032965c6199ab7c92e109.zip
gcc-cfb0c60bf5937ac00f8032965c6199ab7c92e109.tar.gz
gcc-cfb0c60bf5937ac00f8032965c6199ab7c92e109.tar.bz2
* pa.c (print_operand): Always use "<>" instead of "!=".
From-SVN: r3132
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/pa/pa.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c
index 5df256c..831ebf7 100644
--- a/gcc/config/pa/pa.c
+++ b/gcc/config/pa/pa.c
@@ -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: