diff options
author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2017-09-08 14:19:26 +0000 |
---|---|---|
committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2017-09-08 14:19:26 +0000 |
commit | c3ef357b86d04370bb29ff4c2203026a63df2973 (patch) | |
tree | 2b13b20f3504dcedbd20863581b3a8f15f078520 | |
parent | 520b78be6e5b448ae4341960acc5706ae561c974 (diff) | |
download | gcc-c3ef357b86d04370bb29ff4c2203026a63df2973.tar.gz |
* config/alpha/alpha.c (alpha_print_operand) <case 'S'>: Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@251899 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.c | 11 |
2 files changed, 4 insertions, 11 deletions
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 <ubizjak@gmail.com> + + * config/alpha/alpha.c (alpha_print_operand) <case 'S'>: Remove. + 2017-09-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * 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. */ { |