1. 13 Jun, 2016 26 commits
  2. 12 Jun, 2016 4 commits
  3. 11 Jun, 2016 8 commits
  4. 10 Jun, 2016 2 commits
    • fold-const: Don't access bit fields with too big mode (PR71310) · 95c18dd0
      Currently, optimize_bit_field_compare reads the bitfield in word_mode
      if it can.  If the bit field is normally accessed in a smaller mode,
      this might be a violation of the memory model, although the "extra"
      part of the read is not used.  But also, previous stores to the bit
      field will have been done in the smaller mode, and then bigger loads
      from it cause a LHS problem.
      
      
      	PR middle-end/71310
      	* fold-const.c (optimize_bit_field_compare): Don't try to use
      	word_mode unconditionally for reading the bit field, look at
      	DECL_BIT_FIELD_REPRESENTATIVE instead.
      
      gcc/testsuite/
      	PR middle-end/71310
      	* gcc.target/powerpc/pr71310.c: New testcase.
      
      From-SVN: r237319
      Segher Boessenkool committed
    • re PR tree-optimization/71478 (ICE in tree-ssa-reassoc.c after r236564) · b97d37b4
      gcc/testsuite/ChangeLog:
      
      2016-06-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
      
      	PR middle-end/71478
      	* gcc.dg/pr71478.c: New test.
      
      gcc/ChangeLog:
      
      2016-06-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
      
      	PR middle-end/71478
      	* tree-ssa-reassoc.c (reassociate_bb): Remove (-1) from ops list for
      	vector integer type.
      
      From-SVN: r237318
      Kugan Vivekanandarajah committed