1. 07 Sep, 2016 1 commit
  2. 06 Sep, 2016 11 commits
  3. 05 Sep, 2016 14 commits
  4. 04 Sep, 2016 9 commits
  5. 03 Sep, 2016 3 commits
  6. 02 Sep, 2016 2 commits
    • avx512f-klogic-2.c: Fix operand calculation order. · 7b826676
      
      gcc/testsuite/
       	* gcc.target/i386/avx512f-klogic-2.c: Fix operand calculation order.
      
      From-SVN: r239966
      Kirill Yukhin committed
    • Add -fdiagnostics-generate-patch · 717ebe91
      gcc/ChangeLog:
      	* common.opt (fdiagnostics-generate-patch): New option.
      	* diagnostic.c: Include "edit-context.h".
      	(diagnostic_initialize): Initialize context->edit_context_ptr.
      	(diagnostic_finish): Delete context->edit_context_ptr.
      	(diagnostic_report_diagnostic): Add fix-it hints from the
      	diagnostic to context->edit_context_ptr, if any.
      	* diagnostic.h (class edit_context): Add forward decl.
      	(struct diagnostic_context): Add field "edit_context_ptr".
      	* doc/invoke.texi (Diagnostic Message Formatting Options): Add
      	-fdiagnostics-generate-patch.
      	(-fdiagnostics-generate-patch): New item.
      	* toplev.c: Include "edit-context.h".
      	(process_options): Set global_dc->edit_context_ptr to a new
      	edit_context if the options need one.
      	(toplev::main): Handle -fdiagnostics-generate-patch by using
      	global_dc->edit_context_ptr.
      
      gcc/testsuite/ChangeLog:
      	* gcc.dg/plugin/diagnostic-test-show-locus-generate-patch.c: New
      	test case.
      	* gcc.dg/plugin/plugin.exp (plugin_test_list): Add
      	diagnostic-test-show-locus-generate-patch.c to the sources
      	for diagnostic_plugin_test_show_locus.c.
      
      From-SVN: r239965
      David Malcolm committed