diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-02-22 08:53:51 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-02-22 08:53:51 -0500 |
commit | a092957f9680754e1a4a6303f6e31029072e5915 (patch) | |
tree | 3782af819e3b92f57bae1280c15b1b2a223e425a /gcc | |
parent | 242e8072bb759f3512c7c3b5b467d08bb44afd3e (diff) | |
download | gcc-a092957f9680754e1a4a6303f6e31029072e5915.zip gcc-a092957f9680754e1a4a6303f6e31029072e5915.tar.gz gcc-a092957f9680754e1a4a6303f6e31029072e5915.tar.bz2 |
(print_operand, case 'H', 'S'): Delete unused.
From-SVN: r9033
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index cd6b9a1..bd79804 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 |