From a092957f9680754e1a4a6303f6e31029072e5915 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 22 Feb 1995 08:53:51 -0500 Subject: [PATCH] (print_operand, case 'H', 'S'): Delete unused. From-SVN: r9033 --- gcc/config/rs6000/rs6000.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index cd6b9a143fe..bd7980443ea 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -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 -- 2.30.2