From: Uros Bizjak Date: Fri, 8 Sep 2017 14:19:26 +0000 (+0200) Subject: alpha.c (alpha_print_operand): Remove. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=139e8d2aacb2d4221ca94d8c413acd824820040e;p=gcc.git alpha.c (alpha_print_operand): Remove. * config/alpha/alpha.c (alpha_print_operand) : Remove. From-SVN: r251899 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0d3d6e4b84b..d3a149ce1f2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2017-09-08 Uros Bizjak + + * config/alpha/alpha.c (alpha_print_operand) : Remove. + 2017-09-08 Rainer Orth * sancov.c: Include memmodel.h. diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index d582d949940..ecc915d3c6c 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -5294,17 +5294,6 @@ alpha_print_operand (FILE *file, rtx x, int code) fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) / 8); break; - case 'S': - /* Same, except compute (64 - c) / 8 */ - - if (!CONST_INT_P (x) - && (unsigned HOST_WIDE_INT) INTVAL (x) >= 64 - && (INTVAL (x) & 7) != 8) - output_operand_lossage ("invalid %%s value"); - - fprintf (file, HOST_WIDE_INT_PRINT_DEC, (64 - INTVAL (x)) / 8); - break; - case 'C': case 'D': case 'c': case 'd': /* Write out comparison name. */ {