1. 11 Jan, 2017 27 commits
  2. 10 Jan, 2017 13 commits
    • expr.c (store_field): In the bitfield case... · a34ab4c9
      	* expr.c (store_field): In the bitfield case, fetch the return value
      	from the registers before applying a single big-endian adjustment.
      	Always do a final load for a BLKmode value not larger than a word.
      
      From-SVN: r244299
      Eric Botcazou committed
    • PR testsuite/78960 - FAIL: gcc.dg/tree-ssa/builtin-sprintf.c execution test · 664b1a6b
      PR testsuite/78960 - FAIL: gcc.dg/tree-ssa/builtin-sprintf.c execution test
      PR testsuite/78959 - FAIL: gcc.c-torture/execute/pr78622.c 
      PR testsuite/78133 - Commit r241489 adds printf specifiers not supported by newlib
      
      gcc/testsuite/ChangeLog:
      	PR testsuite/78960
      	PR testsuite/78959
      	PR testsuite/78133
      	* gcc.dg/tree-ssa/builtin-sprintf.c: Require C99 runtime.
      	* gcc.dg/tree-ssa/pr78622.c: Ditto.
      
      From-SVN: r244298
      Martin Sebor committed
    • PR middle-end/78138 - missing warnings on buffer overflow with non-constant source length · fefd3086
      gcc/testsuite/ChangeLog:
      
      	PR middle-end/78138
      	* gcc.dg/pr78138.c: New test.
      
      From-SVN: r244297
      Martin Sebor committed
    • re PR c++/77598 (constexpr compilation failure on reference type casting) · 8cef5875
      	PR c++/77598
      
      	* g++.dg/cpp0x/constexpr-ref11.C: New.
      
      From-SVN: r244296
      Jason Merrill committed
    • PR middle-end/78245 - missing -Wformat-length on an overflow of a dynamically allocated buffer · 5a50f6bb
      gcc/testsuite/ChangeLog:
      
      	PR middle-end/78245
      	* gcc.dg/tree-ssa/builtin-sprintf-warn-3.c: Add tests.
      
      gcc/ChangeLog:
      
      	PR middle-end/78245
      	* gimple-ssa-sprintf.c (get_destination_size): Call
      	{init,fini}object_sizes.
      	* tree-object-size.c (addr_object_size): Adjust.
      	(pass_through_call): Adjust.
      	(pass_object_sizes::execute): Adjust.
      	* tree-object-size.h (fini_object_sizes): Declare.
      
      From-SVN: r244294
      Martin Sebor committed
    • PR middle-end/78245 - missing -Wformat-length on an overflow of a dynamically allocated buffer · eb07c7cf
      gcc/testsuite/ChangeLog:
      
      	PR middle-end/78245
      	* gcc.dg/tree-ssa/builtin-sprintf-warn-3.c: Add tests.
      
      gcc/ChangeLog:
      
      	PR middle-end/78245
      	* gimple-ssa-sprintf.c (get_destination_size): Call
      	{init,fini}object_sizes.
      	* tree-object-size.c (addr_object_size): Adjust.
      	(pass_through_call): Adjust.
      	(pass_object_sizes::execute): Adjust.
      	* tree-object-size.h (fini_object_sizes): Declare.
      
      From-SVN: r244293
      Martin Sebor committed
    • Fix issues with unrepresentable column numbers (PR c++/77949) · b9f4757f
      PR c++/77949 identifies an ICE when the C++ frontend attempts to emit a
      fix-it hint inserting a missing semicolon at column 4097 of a source file.
      
      This column value exceeds LINE_MAP_MAX_COLUMN_NUMBER and hence isn't
      representable using a location_t.
      
      Attempting to do so leads to these problems, which this patch fixes:
      
      (a) when encountering a column number > LINE_MAP_MAX_COLUMN_NUMBER we
      create a new linemap with m_column_and_range_bits == 0, but
      linemap_position_for_column doesn't check for this, and hence can emit
      a bogus location_t value that's calculated relative to the previous
      linemap start, but which will be decoded relative to the new linemap,
      leading to very large incorrect line values.
      
      (b) when encountering a column number that can't be represented, and
      for which the linemap was pre-existing, the code would hit this assertion:
        if (linemap_assert_fails (column < (1u << map->m_column_and_range_bits)))
      around a bail-out condition.  The patch replaces this assertion with a
      simple conditional, to stop the ICE when this occurs, and fixes the
      bit count (effective column bits, vs column+range bits)
      
      (c) the C++ frontend wasn't checking for failure of
      linemap_position_for_loc_and_offset when considering emitting the fix-it
      hint.  The patch adds a conditional, so that no fix-it hint is emitted
      if the location is bogus.
      
      gcc/cp/ChangeLog:
      	PR c++/77949
      	* parser.c (cp_parser_class_specifier_1): Only suggest inserting
      	a missing semicolon if we have a valid insertion location for
      	the fix-it hint.
      
      gcc/ChangeLog:
      	PR c++/77949
      	* input.c (selftest::test_accessing_ordinary_linemaps): Verify
      	that we correctly handle column numbers greater than
      	LINE_MAP_MAX_COLUMN_NUMBER.
      
      gcc/testsuite/ChangeLog:
      	PR c++/77949
      	* g++.dg/diagnostic/pr77949.C: New test case.
      
      libcpp/ChangeLog:
      	PR c++/77949
      	* line-map.c (linemap_position_for_column): When calling
      	linemap_start_line, detect if a new linemap was created with
      	0 column bits, and bail out early if this is the case.
      	(linemap_position_for_loc_and_offset): Replace overzealous
      	linemap_assert_fails with a simple conditional; use correct
      	bit count.
      
      From-SVN: r244292
      David Malcolm committed
    • runtime: copy more scheduler code from Go 1.7 runtime · 6fcb740a
          
          I looked at a diff of proc.go between Go 1.7 and gccgo, and copied
          over all the easy stuff.
          
          Reviewed-on: https://go-review.googlesource.com/35090
      
      From-SVN: r244291
      Ian Lance Taylor committed
    • PR tree-optimization/78775 - [7 Regression] ICE in maybe_warn_alloc_args_overflow · c16880ef
      gcc/ChangeLog:
      
      	PR tree-optimization/78775
      	* builtins.c (get_size_range): Move...
      	* calls.c: ...to here.
      	(alloc_max_size): Accept zero argument.
      	(operand_signed_p): Remove.
      	(maybe_warn_alloc_args_overflow): Call get_size_range.
      	* calls.h (get_size_range): Declare.
      
      gcc/testsuite/ChangeLog:
      
      	PR tree-optimization/78775
      	* gcc.dg/attr-alloc_size-4.c: Add test cases.
      	* gcc.dg/attr-alloc_size-10.c: New test.
      	* gcc.dg/attr-alloc_size-11.c: New test.
      	* gcc.dg/builtin-stringop-chk-7.c: New test.
      	* gcc.dg/pr78775.c: New test.
      	* gcc.dg/pr78973-2.c: New test.
      	* gcc.dg/pr78973.c: New test.
      
      From-SVN: r244290
      Martin Sebor committed
    • driver-msp430.c (msp430_mcu_data): Sync with data from TI's devices.csv file as of September 2016. · 5d582919
      2017-01-10  Joe Seymour  <joe.s@somniumtech.com>
      
      	* config/msp430/driver-msp430.c (msp430_mcu_data): Sync with data
      	from TI's devices.csv file as of September 2016.
      	* config/msp430/msp430.c (msp430_mcu_data): Likewise.
      
      From-SVN: r244289
      Joe Seymour committed
    • * da.po: Update. · b7cfd5c4
      From-SVN: r244288
      Joseph Myers committed
    • re PR middle-end/77766 (wrong code at -O2 and -O3 in 64-bit mode on… · 5363d9d9
      re PR middle-end/77766 (wrong code at -O2 and -O3 in 64-bit mode on x86_64-linux-gnu (executable hangs))
      
      	PR tree-optimization/77766
      	PR tree-optimization/78856
      	* gcc.c-torture/execute/pr77766.c: New test.
      
      From-SVN: r244287
      Jeff Law committed
    • extend.texi: Tweak formatting to fix overfull hbox warnings. · dc703d70
      2017-01-10  Sandra Loosemore  <sandra@codesourcery.com>
      
      	gcc/
      	* doc/extend.texi: Tweak formatting to fix overfull hbox warnings.
      	* doc/invoke.texi: Likewise.
      	* doc/md.texi: Likewise.
      	* doc/objc.texi: Likewise.
      
      From-SVN: r244286
      Sandra Loosemore committed