diff options
author | Segher Boessenkool <segher@kernel.crashing.org> | 2014-05-23 18:36:14 +0200 |
---|---|---|
committer | Segher Boessenkool <segher@gcc.gnu.org> | 2014-05-23 18:36:14 +0200 |
commit | e0528ed9e55edf892d0593696e28f483f409fe9f (patch) | |
tree | 7a938a4ca036507d5033c698af6c5e27d74a8ef7 /gcc/config/rs6000/601.md | |
parent | 1263d6429d280b0a7e92b87b4ac392abf0ff7ff1 (diff) | |
download | gcc-e0528ed9e55edf892d0593696e28f483f409fe9f.tar.gz |
rs6000: Make all multiply instructions one type
This uses the attributes "size" and "dot" to specify the differences:
imul3 -> mul size=8
imul2 -> mul size=16
imul -> mul size=32
lmul -> mul size=64
imul_compare -> mul size=32 dot=yes
lmul_compare -> mul size=64 dot=yes
From-SVN: r210867
Diffstat (limited to 'gcc/config/rs6000/601.md')
-rw-r--r-- | gcc/config/rs6000/601.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/601.md b/gcc/config/rs6000/601.md index 94ba06cebcd..c1a00438859 100644 --- a/gcc/config/rs6000/601.md +++ b/gcc/config/rs6000/601.md @@ -61,7 +61,7 @@ "iu_ppc601,iu_ppc601,iu_ppc601") (define_insn_reservation "ppc601-imul" 5 - (and (eq_attr "type" "imul,imul2,imul3,imul_compare") + (and (eq_attr "type" "mul") (eq_attr "cpu" "ppc601")) "iu_ppc601*5") |