diff options
author | Jeff Law <law@redhat.com> | 2016-11-23 15:17:29 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2016-11-23 15:17:29 -0700 |
commit | a2556bdf782b2a0e5ee56ce293a81b4a2c6d9e19 (patch) | |
tree | 4da0ff92bc8787e7bbb32c0509bf95f75a8c7bca /gcc | |
parent | 03a4ffcd5f21c80b36cf8ad27bb3f3ece00c15b7 (diff) | |
download | gcc-a2556bdf782b2a0e5ee56ce293a81b4a2c6d9e19.zip gcc-a2556bdf782b2a0e5ee56ce293a81b4a2c6d9e19.tar.gz gcc-a2556bdf782b2a0e5ee56ce293a81b4a2c6d9e19.tar.bz2 |
* config/spu/spu.md (floatunsdidf2): Remove unused local variable.
From-SVN: r242807
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/spu/spu.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 40fec3d..23f2c16 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-11-23 Jeff Law <law@redhat.com> + + * config/spu/spu.md (floatunsdidf2): Remove unused local variable. + 2016-11-23 Jakub Kicinski <jakub.kicinski@netronome.com> * doc/extend.texi: Constify first argument to __builtin_object_size. diff --git a/gcc/config/spu/spu.md b/gcc/config/spu/spu.md index 1061cb8..1337344 100644 --- a/gcc/config/spu/spu.md +++ b/gcc/config/spu/spu.md @@ -939,7 +939,7 @@ (unsigned_float:DF (match_operand:DI 1 "register_operand" "r")))] "" "{ - rtx value, insns; + rtx value; rtx c0 = spu_const_from_ints (V16QImode, 0x02031011, 0x12138080, 0x06071415, 0x16178080); rtx c1 = spu_const_from_ints (V4SImode, 1023+63, 1023+31, 0, 0); |