From: Richard Henderson Date: Sun, 16 Mar 2003 22:55:14 +0000 (-0800) Subject: simplify-rtx (simplify_binary_operation): Don't abort for SS_PLUS, US_PLUS, SS_MINUS... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4f5c0f7eb958bff387dbf6e2cf2cce5c3b6bd3e0;p=gcc.git simplify-rtx (simplify_binary_operation): Don't abort for SS_PLUS, US_PLUS, SS_MINUS, US_MINUS. * simplify-rtx (simplify_binary_operation): Don't abort for SS_PLUS, US_PLUS, SS_MINUS, US_MINUS. From-SVN: r64452 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0b582475060..d96fbe42a5a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-03-16 Richard Henderson + + * simplify-rtx (simplify_binary_operation): Don't abort for + SS_PLUS, US_PLUS, SS_MINUS, US_MINUS. + 2003-03-16 Richard Henderson * config/i386/i386.md (movstrictqi, movstrictqi_1): Check diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 0bd9b6055b6..50c436f6339 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -1863,6 +1863,13 @@ simplify_binary_operation (code, mode, op0, op1) > (unsigned HOST_WIDE_INT) arg1 ? arg0 : arg1); break; + case SS_PLUS: + case US_PLUS: + case SS_MINUS: + case US_MINUS: + /* ??? There are simplifications that can be done. */ + return 0; + default: abort (); }