diff options
author | Kewen Lin <linkw@linux.ibm.com> | 2021-06-02 07:04:54 +0200 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2021-06-04 00:31:45 +0200 |
commit | 47d25a0314d8f28d399cd93f673df5886ca81d78 (patch) | |
tree | bece4417395722082a959c00c0905b37a6eebb18 | |
parent | 3c70b3ca1ef58f302bf8c16d9e7c7bb8626408bf (diff) | |
download | gcc-47d25a0314d8f28d399cd93f673df5886ca81d78.zip gcc-47d25a0314d8f28d399cd93f673df5886ca81d78.tar.gz gcc-47d25a0314d8f28d399cd93f673df5886ca81d78.tar.bz2 |
cris: Update unexpected empty split condition
gcc/ChangeLog:
* config/cris/cris.md (*addi_reload): Fix empty split condition.
-rw-r--r-- | gcc/config/cris/cris.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/cris/cris.md b/gcc/config/cris/cris.md index 7de0ec6..d5a3c70 100644 --- a/gcc/config/cris/cris.md +++ b/gcc/config/cris/cris.md @@ -1311,7 +1311,7 @@ && (INTVAL (operands[3]) == 2 || INTVAL (operands[3]) == 4) && (reload_in_progress || reload_completed)" "#" - "" + "&& 1" [(set (match_dup 0) (plus:SI (ashift:SI (match_dup 2) (match_dup 3)) (match_dup 1)))] "operands[3] = operands[3] == const2_rtx ? const1_rtx : const2_rtx;") |