1. 22 Feb, 2018 3 commits
    • rs6000: Delete meaningless arguments to define_{expand,split,peephole2} · ad18eed2
      This removes the (usually empty) constraint arguments to define_expand,
      define_split, and define_peephole2: this argument is meaningless and
      just noise.
      
      
      	* config/rs6000/altivec.md: Delete contraint arguments to
      	define_expand, define_split, and define_peephole2, and in
      	define_insn_and_split if always unused.
      	* config/rs6000/darwin.md: Ditto.
      	* config/rs6000/dfp.md: Ditto.
      	* config/rs6000/rs6000.md: Ditto.
      	* config/rs6000/sync.md: Ditto.
      	* config/rs6000/vector.md: Ditto.
      	* config/rs6000/vsx.md: Ditto.
      
      From-SVN: r257890
      Segher Boessenkool committed
    • rs6000: Use brace blocks in define_insn · 6c332313
      This patch changes the remaining cases in our machine description files
      to use brace blocks instead of double-quoted strings as the output
      control string.  This increases readability by making the blocks look
      more like normal C code, mostly because backslash quoting is no longer
      needed.  It also removes such quoting where it was still there (usually
      harmless but always confusing). and it writes "\n\t" as "\;" in one
      place where we didn't already.
      
      
      	* config/rs6000/altivec.md: Write output control strings as braced
      	blocks instead of double-quoted strings.
      	* config/rs6000/darwin.md: Ditto.
      	* config/rs6000/rs6000.md: Ditto.
      	* config/rs6000/vector.md: Ditto.
      	* config/rs6000/vsx.md: Ditto.
      
      From-SVN: r257889
      Segher Boessenkool committed
    • Daily bump. · 78a85122
      From-SVN: r257887
      GCC Administrator committed
  2. 21 Feb, 2018 9 commits
  3. 20 Feb, 2018 27 commits
  4. 19 Feb, 2018 1 commit
    • re PR fortran/83344 (Use of uninitialized memory with ASSOCIATE and strings) · 5c60dbc1
      2018-02-19  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/83344
      	PR fortran/83975
      	* resolve.c (resolve_assoc_var): Rearrange the logic for the
      	determination of the character length of associate names. If
      	the associate name is missing a length expression or the length
      	expression is not a constant and the target is not a variable,
      	make the associate name allocatable and deferred length.
      	* trans-decl.c (gfc_get_symbol_decl): Null the character length
      	backend_decl for deferred length associate names that are not
      	variables. Set 'length' to gfc_index_zero_node for character
      	associate names, whose character length is a PARM_DECL.
      
      2018-02-19  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/83344
      	PR fortran/83975
      	* gfortran.dg/associate_22.f90: Enable commented out test.
      	* gfortran.dg/associate_36.f90: New test.
      
      From-SVN: r257827
      Paul Thomas committed