1. 26 Nov, 2018 21 commits
  2. 25 Nov, 2018 6 commits
  3. 24 Nov, 2018 5 commits
  4. 23 Nov, 2018 8 commits
    • re PR bootstrap/88157 (ICE when building libgo encoding/gob.lo starting with r266385) · 795a6c67
      2018-11-23  Vladimir Makarov  <vmakarov@redhat.com>
      
      	PR bootstrap/88157
      	* ira-costs.c (record_operand_costs): Use bigger hard reg class if
      	its mode does not fit to the original class.
      
      From-SVN: r266422
      Vladimir Makarov committed
    • pr70669.c: Use unary minus instead of addition. · 1b8ccb9d
      2018-11-23  Vladimir Makarov  <vmakarov@redhat.com>
      
      	* gcc.target/powerpc/pr70669.c: Use unary minus instead of
      	addition.
      
      From-SVN: r266421
      Vladimir Makarov committed
    • re PR tree-optimization/87756 (missing unterminated argument warning using… · 0c3aba0c
      re PR tree-optimization/87756 (missing unterminated argument warning using address of a constant character)
      
      	PR tree-optimization/87756
      	* gcc.dg/builtin-memchr-2.c: Scan the gimple dump instead of
      	optimized.
      	* gcc.dg/builtin-memchr-3.c: Likewise.
      
      From-SVN: r266420
      Jakub Jelinek committed
    • Make recursion_check work for multiple threads · f4c0f888
      With multiple threads, using an unprotected static variable to check
      whether recursion has occured isn't valid, as one thread might have
      modified the variable, thus causing another thread to incorrectly
      conclude that recursion has occured.  This patch avoids this problem
      by using a thread-specific variable for the recursion check.
      
      Regtested on x86_64-pc-linux-gnu.
      
      libgfortran/ChangeLog:
      
      2018-11-23  Janne Blomqvist  <jb@gcc.gnu.org>
      
      	* runtime/error.c (MAGIC): Remove.
      	(recursion_key): New variable.
      	(recursion_check): Use thread-specific variable for recursion
      	check if threads are active.
      	(constructor_recursion_check): New function.
      	(destructor_recursion_check): New funcion.
      
      From-SVN: r266419
      Janne Blomqvist committed
    • PR tree-optimization/87756 - missing unterminated argument warning using address… · 70c70369
      PR tree-optimization/87756 - missing unterminated argument warning using address of a constant character
      
      gcc/ChangeLog:
      
      	PR tree-optimization/87756
      	* expr.c (string_constant): Synthesize a string literal from
      	the address of a constant character.
      	* tree.c (build_string_literal): Add an argument.
      	* tree.h (build_string_literal): Same.
      
      gcc/testsuite/ChangeLog:
      
      	PR tree-optimization/87756
      	* gcc.dg/builtin-memchr-2.c: New test.
      	* gcc.dg/builtin-memchr-3.c: Same.
      	* gcc.dg/warn-sprintf-no-nul-2.c: Same.
      
      From-SVN: r266418
      Martin Sebor committed
    • PR testsuite/88098 - FAIL: gcc.dg/Wbuiltin-declaration-mismatch-4.c · db1d09b0
      gcc/c/ChangeLog:
      
      	PR testsuite/88098
      	* c-typeck.c (convert_arguments): Call builtin_decl_explicit instead.
      	(maybe_warn_builtin_no_proto_arg): Handle short enum to int promotion.
      
      gcc/testsuite/ChangeLog:
      
      	PR testsuite/88098
      	* gcc.dg/Wbuiltin-declaration-mismatch-4.c: Adjust.
      	* gcc.dg/Wbuiltin-declaration-mismatch-5.c: New test.
      	* gcc.dg/torture/pr67222.c: Adjust.
      
      From-SVN: r266417
      Martin Sebor committed
    • Implement P0415 More constexpr for std::complex. · e987fb1e
      
      2018-11-23  Edward Smith-Rowland  <3dw4rd@verizon.net>
      
      	Implement P0415 More constexpr for std::complex.
      	* include/std/complex (conj(complex<Tp>), norm(complex<Tp>)): Constexpr;
      	(real(Tp), imag(Tp)): Constexpr;
      	(operator@=(Tp), operator@=(complex<Tp>)): Constexpr;
      	(operator@(Tp,complex<Tp>), operator@(complex<Tp>,Tp)
      	operator@(complex<Tp>,complex<Tp>)): Constexpr.
      	* testsuite/26_numerics/complex/comparison_operators/
      	more_constexpr.cc: New test.
      	* testsuite/26_numerics/complex/operators/more_constexpr.cc: New test.
      	* testsuite/26_numerics/complex/requirements/
      	more_constexpr.cc: New test.
      	* testsuite/26_numerics/complex/value_operations/
      	more_constexpr.cc: New test.
      	* testsuite/26_numerics/headers/complex/synopsis.cc:
      	Add _GLIBCXX20_CONSTEXPR to applicable operators; Add missing proj().
      	* testsuite/26_numerics/headers/complex/synopsis.cc:
      	Add _GLIBCXX20_CONSTEXPR to relevant decls.
      
      From-SVN: r266416
      Edward Smith-Rowland committed
    • [aarch64] Add CPU support for Ampere Computing's eMAG. · e02669db
      2018-11-23  Christoph Muellner <christoph.muellner@theobroma-system.com>
      
      	* config/aarch64/aarch64-cores.def: Define emag.
      	* config/aarch64/aarch64-tune.md: Regenerated with emag.
      	* config/aarch64/aarch64.c (emag_tunings): New struct.
      	* doc/invoke.texi: Document mtune value.
      
      From-SVN: r266415
      Christoph Muellner committed