diff options
author | Segher Boessenkool <segher@gcc.gnu.org> | 2016-12-08 01:09:01 +0100 |
---|---|---|
committer | Segher Boessenkool <segher@gcc.gnu.org> | 2016-12-08 01:09:01 +0100 |
commit | 12705913ef7409301b76596cf60bf4327abfee7a (patch) | |
tree | 1fc4f5d99ce0637a35a66375f50e2ba4c7aeaa18 /gcc | |
parent | ee92e7bafb52d267f52e4c48edada5f279bcf591 (diff) | |
download | gcc-12705913ef7409301b76596cf60bf4327abfee7a.zip gcc-12705913ef7409301b76596cf60bf4327abfee7a.tar.gz gcc-12705913ef7409301b76596cf60bf4327abfee7a.tar.bz2 |
simplify-rtx: Fix the last fix (PR78638)
I managed to get the last obvious fix wrong: mode is M1, GET_MODE (op)
is M2.
[ adding missing PR marker ]
PR rtl-optimization/78638
* simplify-rtx.c (simplify_truncation): M2 is not mode, it is
GET_MODE (op). Fix this.
From-SVN: r243420
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6372ff4..05ae50b5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -446,6 +446,7 @@ 2016-12-02 Segher Boessenkool <segher@kernel.crashing.org> + PR rtl-optimization/78638 * simplify-rtx.c (simplify_truncation): M2 is not mode, it is GET_MODE (op). Fix this. |