This is the mail archive of the libstdc++-cvs@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

r204427 - in /branches/google/gcc-4_8: ./ Chang...


Author: singhai
Date: Tue Nov  5 23:01:12 2013
New Revision: 204427

URL: http://gcc.gnu.org/viewcvs?rev=204427&root=gcc&view=rev
Log:
Merge from gcc-4_8-branch.

Merged revisions 202304,202349,202358,202362,202376,202385-202388,202397,202410,202412,202420,202435,202474,202476,202485,202495,202498,202507-202509,202513,202548,202559,202575,202580,202585,202595,202598,202607,202640,202653,202671,202674,202685,202689,202695,202697,202709,202712,202718,202724,202727,202730,202736,202739,202752,202762,202799,202808,202810,202816,202821,202828-202830,202834,202853,202878,202882,202930,202963,202978-202979,202983,202994,202996,203001,203007,203010,203022,203036,203039,203043,203050,203053,203062,203100,203121,203124,203128,203133,203141,203145,203149,203192,203196,203201-203202,203204,203207-203208,203210,203213,203222,203226,203230,203234,203236-203238,203250,203256,203258,203275,203277,203290,203293,203295,203297,203307-203308,203326,203334,203384,203399,203474,203480,203494,203500,203510,203535,203581,203637,203641-203689,203692,203696,203712,203719,203728,203730,203737,203759,203771,203784,203789,203794,203806,203819,203838,203849,203853,203858,203868,203873,203883,203887,203912,203943,203958,203990,203999,204009,204042,204051,204056,204067,204076,204082,204087,204100,204114,204120,204144,204163,204165,204186,204191,204221,204237,204264,204282,204292,204304,204307,204318,204323,204338,204341,204354,204374 via svnmerge from 
svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_8-branch

=======================================================================
Bugs fixed (http://gcc.gnu.org/bugzilla):

C++: 58325 58273 58458 58457 58358 58535 58568 57850 58633 58596 58282 58979

libstdc++: 58341 54314 58415 58437 58569 57465 57641 58659 58191 58800
	   58839 58912 58952

Optimizers: 57656 58223 57685 57521 58364 58365 58385 58377 58088
	    56791 58463 58463 56716 58564 58539 58670 57488 58805
	    58831 58789 57084 58079

rtl: 58542

Fortran: 55469 55469 57697 58469 57697 58469 58355 

Ada: 58264

target: 58330 58574 58460 58838 58779 58792 58690 57735 58314 58382

=======================================================================

Other changes:

--------
  Improve __atomic_clear/test_and_set documentation
  
  Document that __atomic_clear and __atomic_test_and_set should
  only be used with bool.
  
  gcc/:
  2013-09-11  Andi Kleen
  
  	Backport from mainline
  	* doc/extend.texi: Document that __atomic_clear and
  	  __atomic_test_and_set should only be used with bool.
--------
  Fix HLE example in manual
  
  The HLE example in the manual only commits when using bool
  for the flag, because __atomic_clear only writes bool, and
  HLE requires the acquire and release to match.
  
  So when the example is copied with e.g. an int variable it
  does not commit and causes slower than expected performance.
  
  Some people are running into problems because of this.
  
  Switch it over to use __atomic_store.
  
  Also fix a minor typo nearby.
  
  gcc/:
  2013-09-11  Andi Kleen
  
  	Backport from mainline
  	* doc/extend.texi: Dont use __atomic_clear in HLE
  	example.  Fix typo.
--------
  Fix __atomic_store_n typo in recent manual change
  
  gcc/:
  2013-09-11  Andi Kleen
  
   	Backport from mainline
         * doc/extend.texi: Use __atomic_store_n instead of
         __atomic_store in HLE example.
--------
  reflect: Fix bug calling method on indirect value.
  
  The gccgo-specific iword function was checking v.kind, but for
  a method value that is always Func.  Fix to check v.typ.Kind()
  instead.
--------
  	* gcc-interface/trans.c (Subprogram_Body_to_gnu): Pop the stack of
  	return variables for subprograms using the CICO mechanism.
--------
  	* gcc-interface/trans.c (gigi): Remove dead code.
--------
  	* arm.c (arm_expand_prologue): Validate architecture supports
  	LDRD/STRD before accepting tuning preferences.
  	(arm_expand_epilogue): Likewise.
--------
  compiler: Fix type of result of shortcut calculation.
--------
  compiler: Correctly handle identical unnamed structs with methods.
--------
  compiler: Fix name of unexported method of embedded imported type.
  
  Test case is fixedbugs/bug478.go in master testsuite.
--------
  	* omp-low.c (expand_omp_sections): Always pass len - 1 to
  	GOMP_sections_start, even if !exit_reachable.
  libgomp/
  	* testsuite/libgomp.c/sections-2.c: New test.
--------
  compiler: Fix inconsistent check for structs using memcmp for ==.
  
  Test is bug479.
--------
  	* config/pa/pa.md: In "scc" insn patterns, change output template to
  	handle const0_rtx in reg_or_0_operand operands.
--------
  	* config/rs6000/predicates.md (add_cint_operand): New.
  	(reg_or_add_cint_operand, small_toc_ref): Use add_cint_operand.
  	* config/rs6000/rs6000.md (largetoc_high_plus): Restrict offset
  	using add_cint_operand.
  	(largetoc_high_plus_aix): Likewise.
  	* config/rs6000/rs6000.c (toc_relative_expr_p): Use add_cint_operand.
--------
  	* tree-ssa-ccp.c (insert_clobber_before_stack_restore): Recurse on copy
  	assignment statements.
--------
  compiler: don't permit nil assignment to blank identifier.
  
  Fixes https://code.google.com/p/go/issues/detail?id=6005.
--------
  reflect: Implement MakeFunc for amd64.
--------
  reflect: Implement MakeFunc for 386.
--------
  reflect: Copy stack values onto heap in amd64 MakeFunc.
--------
  compiler: Avoid knockon errors for invalid uses of _.
--------
  compiler: Use backend interface for variable expressions.
  
  	* go-gcc.cc (Backend::error_expression): New function.
  	(Backend::var_expression): New function.
  	(Backend::indirect_expression): New function.
--------
  reflect: Fix reflect.Call with function following non-pointer.
--------
  reflect: Use hand-coded .eh_frame section rather than CFI directives.
  
  From Rainer Orth.
--------
  compiler: Use backend interface for numeric expressions.
  
  	* go-gcc.cc: Include "real.h" and "realmpfr.h".
  	(Backend::integer_constant_expression): New function.
  	(Backend::float_constant_expression): New function.
  	(Backend::complex_constant_expression): New function.
--------
  runtime: Fix append of slice with elements of zero size.
--------
  	* config.gcc (hppa*64*-*-linux*): Don't add pa/t-linux to tmake_file.
--------
  	* sr.po: Update.
--------
  compiler: Use backend interface for temporary reference expressions.
  
  	* go-gcc.cc (Backend::convert_expression): New function.
--------
  reflect: Fix calling Interface method on value created by MakeFunc.
--------
  2013-10-07  Andreas Krebbel
  
  	Backport from mainline
  	2013-06-27  Andreas Krebbel
  
          * gcc.target/s390/htm-1.c: New file.
          * gcc.target/s390/htm-nofloat-1.c: New file.
          * gcc.target/s390/htm-xl-intrin-1.c: New file.
--------
  2013-10-07  Andreas Krebbel
  
  	* config/s390/s390.md ("tbegin", "tbegin_nofloat", "tbegin_retry")
  	("tbegin_retry_nofloat", "tend", "tabort", "tx_assist"): Remove
  	constraint letters from expanders.
  	("tbegin_retry", "tbegin_retry_nofloat"): Change predicate of the
  	retry count to general_operand.
  	("tabort"): Give operand 0 a mode.
  	("tabort_1"): Add mode and constraint letter for operand 0.
  	* doc/extend.texi: Fix protoype of __builtin_non_tx_store.
--------
  2013-10-07  Andreas Krebbel
  
  	* config/s390/s390.c (s390_register_info): Make the call-saved FPR
  	loop to work also for 31bit ABI.
  	Save the stack pointer for frame_size > 0.
  
  2013-10-07  Andreas Krebbel
  
  	* gcc.target/s390/htm-nofloat-2.c: New testcase.
--------
  reflect: Use C style comments in 386 assembly for Solaris assembler.
  
  From Rainer Orth.
--------
  2013-10-08  Andreas Krebbel
  
  	* gcc.target/s390/htm-nofloat-2.c: Add -mzarch to asm options.
--------
  compiler: Error for qualified ID as field name in struct literal.
--------
  runtime: Do not report thunks and recover functions in backtrace.
--------
  	* parallel.c (GOMP_parallel_end): Remember team->nthreads and call
  	gomp_team_end before adjusting gomp_remaining_threads_count, increment
  	gomp_remaining_threads_count instead of decrementing it again.
  	* testsuite/libgomp.c/thread-limit-1.c: New test.
--------
  	* testsuite/20_util/shared_ptr/cons/58659.cc: Use VERIFY instead of
  	aborting.
--------
  Backport: [AArch64] Fix early-clobber operands to vtbx[1,3]
  
  	* config/aarch64/arm_neon.h
  	(vtbx<1,3>_<psu>8): Fix register constriants.
--------
  	* gcc-interface/decl.c (gnat_to_gnu_param): Remove obsolete comment.
--------
  Fix gcc.dg/torture/pr58670.c for Solaris 9/x86 assembler
  
  	* gcc.dg/torture/pr58670.c (ASM_STR) [__i386__ || __x86_64__]: Use
  	btsl.
--------
  Backport FMA4 enablement for bdver3 from mainline
--------
  Bring over Go 1.1.2 bug fixes from mainline.
  
  	Bring in from mainline:
  
  	2013-10-11  Chris Manghane
  	* go-gcc.cc (Gcc_backend::function_code_expression): New
  	function.
  
  	2013-10-10  Chris Manghane
  	* go-gcc.cc (Backend::error_function): New function.
  	(Backend::function): New function.
  	(Backend::make_function): New function.
  	(function_to_tree): New function.
--------
  fix typo comment
--------
  compiler: Don't warn for unknown type when importing anonymous field.
--------

  
  syscall: Add Dup3, {Get,List,Remove,Set}xattr, {Get,Set}priority.
--------
  compiler: Rework handling of imported anonymous builtin types again.
--------
  runtime: Fix typo in dup3 fallback implementation.
  
  From Uros Bizjak.
--------
  	* gcc-interface/utils.c (gnat_set_type_context): New function.
  	(gnat_pushdecl): Use it to set the context of the type.
--------
  	* gcc-interface/utils.c (scale_by_factor_of): New function.
  	(rest_of_record_type_compilation): Use scale_by_factor_of in order to
  	scale the original offset for both rounding cases; in the second case,
  	take into accout the addend to compute the alignment.  Tidy up.
--------
  	* gcc.target/sh/pr54089-3.c: Fix test for load of constant 31.
--------
  Backport:
  
  2013-10-21  Mike Stump
  
  	* gcc_update (configure): Update to handle svn 1.8.1.
--------
  	* recog.c (search_ofs): New static variable moved from...
  	(peep2_find_free_register): ...here.
  	(peephole2_optimize): Initialize it.
--------
  Fix line number data for PIC register setup code.
      
  2013-10-28  Tom de Vries
      
  	* cfgexpand.c (gimple_expand_cfg): Remove test for parm_birth_insn.
  	Don't commit insertions after NOTE_INSN_FUNCTION_BEG.
      
  	* gcc.target/arm/require-pic-register-loc.c: New test.
--------
  	* testsuite/20_util/shared_ptr/cons/58839.cc: Do not use
  	default_delete<void>.
--------
  	* tr.po: Update.



Added:
    branches/google/gcc-4_8/libstdc++-v3/testsuite/20_util/function/58569.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/20_util/function/58569.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/20_util/function/cons/57465.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/20_util/function/cons/57465.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/20_util/shared_ptr/cons/58659.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/20_util/shared_ptr/cons/58659.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/20_util/shared_ptr/cons/58839.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/20_util/shared_ptr/cons/58839.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/25_algorithms/nth_element/58800.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/25_algorithms/nth_element/58800.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/25_algorithms/search_n/58358.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/25_algorithms/search_n/58358.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/30_threads/timed_mutex/try_lock_until/57641.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/30_threads/timed_mutex/try_lock_until/57641.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/ext/vstring/cons/58415-1.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/ext/vstring/cons/58415-1.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/ext/vstring/cons/58415-2.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/ext/vstring/cons/58415-2.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/performance/25_algorithms/sort.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/performance/25_algorithms/sort.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/performance/25_algorithms/sort_heap.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/performance/25_algorithms/sort_heap.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/performance/25_algorithms/stable_sort.cc
      - copied unchanged from r204374, branches/gcc-4_8-branch/libstdc++-v3/testsuite/performance/25_algorithms/stable_sort.cc
Modified:
    branches/google/gcc-4_8/libstdc++-v3/ChangeLog
    branches/google/gcc-4_8/libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver
    branches/google/gcc-4_8/libstdc++-v3/include/bits/shared_ptr_base.h
    branches/google/gcc-4_8/libstdc++-v3/include/bits/stl_algo.h
    branches/google/gcc-4_8/libstdc++-v3/include/bits/stl_algobase.h
    branches/google/gcc-4_8/libstdc++-v3/include/c_global/cstdio
    branches/google/gcc-4_8/libstdc++-v3/include/debug/functions.h
    branches/google/gcc-4_8/libstdc++-v3/include/debug/macros.h
    branches/google/gcc-4_8/libstdc++-v3/include/ext/sso_string_base.h
    branches/google/gcc-4_8/libstdc++-v3/include/std/functional
    branches/google/gcc-4_8/libstdc++-v3/include/std/mutex
    branches/google/gcc-4_8/libstdc++-v3/testsuite/20_util/shared_ptr/cons/43820_neg.cc
    branches/google/gcc-4_8/libstdc++-v3/testsuite/25_algorithms/search_n/iterator.cc

Changes in other areas also in this revision:
Added:
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/cpp0x/decltype57.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/cpp0x/decltype57.C
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice10.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice10.C
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-nsdmi5.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-nsdmi5.C
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/diagnostic/pr58979.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/diagnostic/pr58979.C
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/ext/pr57735.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/ext/pr57735.C
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/parse/crash62.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/parse/crash62.C
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/parse/using4.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/parse/using4.C
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/template/inherit9.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/template/inherit9.C
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/tm/noexcept-6.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/tm/noexcept-6.C
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/uninit-pred-4.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/uninit-pred-4.C
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/warn/Wunused-var-21.C
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/g++.dg/warn/Wunused-var-21.C
    branches/google/gcc-4_8/gcc/testsuite/gcc.c-torture/compile/pr58088.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.c-torture/compile/pr58088.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.c-torture/execute/pr58364.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.c-torture/execute/pr58364.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.c-torture/execute/pr58365.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.c-torture/execute/pr58365.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.c-torture/execute/pr58385.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.c-torture/execute/pr58385.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.c-torture/execute/pr58564.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.c-torture/execute/pr58564.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.c-torture/execute/pr58574.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.c-torture/execute/pr58574.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.c-torture/execute/pr58831.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.c-torture/execute/pr58831.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/atomic-store-6.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/atomic-store-6.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/pr58463.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/pr58463.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/pr58805.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/pr58805.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/torture/pr57488.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/torture/pr57488.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/torture/pr57521.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/torture/pr57521.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/torture/pr57656.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/torture/pr57656.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/torture/pr57685.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/torture/pr57685.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/torture/pr58079.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/torture/pr58079.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/torture/pr58223.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/torture/pr58223.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/torture/pr58539.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/torture/pr58539.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/torture/pr58670.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/torture/pr58670.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/torture/pr58779.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/torture/pr58779.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/torture/pr58830.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.dg/torture/pr58830.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/aarch64/pr58460.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.target/aarch64/pr58460.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/arm/require-pic-register-loc.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.target/arm/require-pic-register-loc.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/i386/pr58690.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.target/i386/pr58690.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/powerpc/pr58330.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.target/powerpc/pr58330.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/s390/htm-1.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.target/s390/htm-1.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/s390/htm-nofloat-1.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.target/s390/htm-nofloat-1.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/s390/htm-nofloat-2.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.target/s390/htm-nofloat-2.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/s390/htm-xl-intrin-1.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.target/s390/htm-xl-intrin-1.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/sh/torture/pr58314.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gcc.target/sh/torture/pr58314.c
    branches/google/gcc-4_8/gcc/testsuite/gfortran.dg/defined_assignment_10.f90
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gfortran.dg/defined_assignment_10.f90
    branches/google/gcc-4_8/gcc/testsuite/gfortran.dg/defined_assignment_11.f90
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gfortran.dg/defined_assignment_11.f90
    branches/google/gcc-4_8/gcc/testsuite/gfortran.dg/defined_assignment_8.f90
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gfortran.dg/defined_assignment_8.f90
    branches/google/gcc-4_8/gcc/testsuite/gfortran.dg/defined_assignment_9.f90
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gfortran.dg/defined_assignment_9.f90
    branches/google/gcc-4_8/gcc/testsuite/gfortran.dg/extends_15.f90
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gfortran.dg/extends_15.f90
    branches/google/gcc-4_8/gcc/testsuite/gnat.dg/array_bounds_test2.adb
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gnat.dg/array_bounds_test2.adb
    branches/google/gcc-4_8/gcc/testsuite/gnat.dg/in_out_parameter4.adb
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gnat.dg/in_out_parameter4.adb
    branches/google/gcc-4_8/gcc/testsuite/gnat.dg/opt28.adb
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gnat.dg/opt28.adb
    branches/google/gcc-4_8/gcc/testsuite/gnat.dg/opt28.ads
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gnat.dg/opt28.ads
    branches/google/gcc-4_8/gcc/testsuite/gnat.dg/opt28_pkg.ads
      - copied unchanged from r204374, branches/gcc-4_8-branch/gcc/testsuite/gnat.dg/opt28_pkg.ads
    branches/google/gcc-4_8/libgo/go/reflect/makefunc_386.S
      - copied unchanged from r204374, branches/gcc-4_8-branch/libgo/go/reflect/makefunc_386.S
    branches/google/gcc-4_8/libgo/go/reflect/makefunc_amd64.S
      - copied unchanged from r204374, branches/gcc-4_8-branch/libgo/go/reflect/makefunc_amd64.S
    branches/google/gcc-4_8/libgo/go/reflect/makefunc_dummy.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/libgo/go/reflect/makefunc_dummy.c
    branches/google/gcc-4_8/libgo/go/reflect/makefuncgo_386.go
      - copied unchanged from r204374, branches/gcc-4_8-branch/libgo/go/reflect/makefuncgo_386.go
    branches/google/gcc-4_8/libgo/go/reflect/makefuncgo_amd64.go
      - copied unchanged from r204374, branches/gcc-4_8-branch/libgo/go/reflect/makefuncgo_amd64.go
    branches/google/gcc-4_8/libgo/runtime/go-cdiv.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/libgo/runtime/go-cdiv.c
    branches/google/gcc-4_8/libgomp/testsuite/libgomp.c/sections-2.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/libgomp/testsuite/libgomp.c/sections-2.c
    branches/google/gcc-4_8/libgomp/testsuite/libgomp.c/thread-limit-1.c
      - copied unchanged from r204374, branches/gcc-4_8-branch/libgomp/testsuite/libgomp.c/thread-limit-1.c
Modified:
    branches/google/gcc-4_8/   (props changed)
    branches/google/gcc-4_8/ChangeLog
    branches/google/gcc-4_8/boehm-gc/ChangeLog
    branches/google/gcc-4_8/config/ChangeLog
    branches/google/gcc-4_8/contrib/ChangeLog
    branches/google/gcc-4_8/contrib/gcc_update
    branches/google/gcc-4_8/contrib/reghunt/ChangeLog
    branches/google/gcc-4_8/contrib/regression/ChangeLog
    branches/google/gcc-4_8/fixincludes/ChangeLog
    branches/google/gcc-4_8/gcc/   (props changed)
    branches/google/gcc-4_8/gcc/ChangeLog
    branches/google/gcc-4_8/gcc/DATESTAMP
    branches/google/gcc-4_8/gcc/ada/ChangeLog
    branches/google/gcc-4_8/gcc/ada/gcc-interface/decl.c
    branches/google/gcc-4_8/gcc/ada/gcc-interface/trans.c
    branches/google/gcc-4_8/gcc/ada/gcc-interface/utils.c
    branches/google/gcc-4_8/gcc/alias.c
    branches/google/gcc-4_8/gcc/c-family/ChangeLog
    branches/google/gcc-4_8/gcc/c-family/c-common.c
    branches/google/gcc-4_8/gcc/c/ChangeLog
    branches/google/gcc-4_8/gcc/cfgcleanup.c
    branches/google/gcc-4_8/gcc/cfgexpand.c
    branches/google/gcc-4_8/gcc/cfgrtl.c
    branches/google/gcc-4_8/gcc/cgraphbuild.c
    branches/google/gcc-4_8/gcc/combine.c
    branches/google/gcc-4_8/gcc/config.gcc
    branches/google/gcc-4_8/gcc/config/aarch64/aarch64.md
    branches/google/gcc-4_8/gcc/config/aarch64/arm_neon.h
    branches/google/gcc-4_8/gcc/config/arm/arm.c
    branches/google/gcc-4_8/gcc/config/arm/vfp.md
    branches/google/gcc-4_8/gcc/config/i386/i386.c
    branches/google/gcc-4_8/gcc/config/i386/i386.md
    branches/google/gcc-4_8/gcc/config/pa/pa.c
    branches/google/gcc-4_8/gcc/config/pa/pa.md
    branches/google/gcc-4_8/gcc/config/rs6000/predicates.md
    branches/google/gcc-4_8/gcc/config/rs6000/rs6000.c
    branches/google/gcc-4_8/gcc/config/rs6000/rs6000.md
    branches/google/gcc-4_8/gcc/config/s390/s390.c
    branches/google/gcc-4_8/gcc/config/s390/s390.md
    branches/google/gcc-4_8/gcc/config/sh/sh.md
    branches/google/gcc-4_8/gcc/config/sh/sh.opt
    branches/google/gcc-4_8/gcc/cp/ChangeLog
    branches/google/gcc-4_8/gcc/cp/class.c
    branches/google/gcc-4_8/gcc/cp/decl.c
    branches/google/gcc-4_8/gcc/cp/decl2.c
    branches/google/gcc-4_8/gcc/cp/except.c
    branches/google/gcc-4_8/gcc/cp/init.c
    branches/google/gcc-4_8/gcc/cp/parser.c
    branches/google/gcc-4_8/gcc/cp/pt.c
    branches/google/gcc-4_8/gcc/cp/semantics.c
    branches/google/gcc-4_8/gcc/doc/extend.texi
    branches/google/gcc-4_8/gcc/doc/implement-cxx.texi
    branches/google/gcc-4_8/gcc/explow.c
    branches/google/gcc-4_8/gcc/fold-const.c
    branches/google/gcc-4_8/gcc/fortran/ChangeLog
    branches/google/gcc-4_8/gcc/fortran/decl.c
    branches/google/gcc-4_8/gcc/fortran/resolve.c
    branches/google/gcc-4_8/gcc/go/ChangeLog
    branches/google/gcc-4_8/gcc/go/go-gcc.cc
    branches/google/gcc-4_8/gcc/go/gofrontend/backend.h
    branches/google/gcc-4_8/gcc/go/gofrontend/expressions.cc
    branches/google/gcc-4_8/gcc/go/gofrontend/expressions.h
    branches/google/gcc-4_8/gcc/go/gofrontend/gogo-tree.cc
    branches/google/gcc-4_8/gcc/go/gofrontend/gogo.cc
    branches/google/gcc-4_8/gcc/go/gofrontend/gogo.h
    branches/google/gcc-4_8/gcc/go/gofrontend/import.h
    branches/google/gcc-4_8/gcc/go/gofrontend/lex.cc
    branches/google/gcc-4_8/gcc/go/gofrontend/parse.cc
    branches/google/gcc-4_8/gcc/go/gofrontend/runtime.cc
    branches/google/gcc-4_8/gcc/go/gofrontend/runtime.def
    branches/google/gcc-4_8/gcc/go/gofrontend/statements.cc
    branches/google/gcc-4_8/gcc/go/gofrontend/types.cc
    branches/google/gcc-4_8/gcc/go/gofrontend/types.h
    branches/google/gcc-4_8/gcc/java/ChangeLog
    branches/google/gcc-4_8/gcc/lto/ChangeLog
    branches/google/gcc-4_8/gcc/objc/ChangeLog
    branches/google/gcc-4_8/gcc/objcp/ChangeLog
    branches/google/gcc-4_8/gcc/omp-low.c
    branches/google/gcc-4_8/gcc/optabs.c
    branches/google/gcc-4_8/gcc/passes.c
    branches/google/gcc-4_8/gcc/po/ChangeLog
    branches/google/gcc-4_8/gcc/recog.c
    branches/google/gcc-4_8/gcc/stmt.c
    branches/google/gcc-4_8/gcc/testsuite/ChangeLog
    branches/google/gcc-4_8/gcc/testsuite/g++.dg/cpp0x/enum18.C
    branches/google/gcc-4_8/gcc/testsuite/g++.old-deja/g++.mike/misc9.C
    branches/google/gcc-4_8/gcc/testsuite/gcc.dg/tree-ssa/ldist-16.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/i386/pr30315.c
    branches/google/gcc-4_8/gcc/testsuite/gcc.target/sh/pr54089-3.c
    branches/google/gcc-4_8/gcc/tree-if-conv.c
    branches/google/gcc-4_8/gcc/tree-loop-distribution.c
    branches/google/gcc-4_8/gcc/tree-ssa-ccp.c
    branches/google/gcc-4_8/gcc/tree-ssa-pre.c
    branches/google/gcc-4_8/gcc/tree-ssa-reassoc.c
    branches/google/gcc-4_8/gcc/tree-ssa-tail-merge.c
    branches/google/gcc-4_8/gcc/tree-vect-loop.c
    branches/google/gcc-4_8/gcc/tree-vrp.c
    branches/google/gcc-4_8/gnattools/ChangeLog
    branches/google/gcc-4_8/include/ChangeLog
    branches/google/gcc-4_8/intl/ChangeLog
    branches/google/gcc-4_8/libada/ChangeLog
    branches/google/gcc-4_8/libatomic/ChangeLog
    branches/google/gcc-4_8/libbacktrace/ChangeLog
    branches/google/gcc-4_8/libcpp/ChangeLog
    branches/google/gcc-4_8/libcpp/po/ChangeLog
    branches/google/gcc-4_8/libcpp/po/sr.po
    branches/google/gcc-4_8/libcpp/po/tr.po
    branches/google/gcc-4_8/libdecnumber/ChangeLog
    branches/google/gcc-4_8/libffi/ChangeLog
    branches/google/gcc-4_8/libgcc/ChangeLog
    branches/google/gcc-4_8/libgcc/config/libbid/ChangeLog
    branches/google/gcc-4_8/libgfortran/ChangeLog
    branches/google/gcc-4_8/libgfortran/io/list_read.c
    branches/google/gcc-4_8/libgo/Makefile.am
    branches/google/gcc-4_8/libgo/Makefile.in
    branches/google/gcc-4_8/libgo/config.h.in
    branches/google/gcc-4_8/libgo/configure
    branches/google/gcc-4_8/libgo/configure.ac
    branches/google/gcc-4_8/libgo/go/reflect/all_test.go
    branches/google/gcc-4_8/libgo/go/reflect/makefunc.go
    branches/google/gcc-4_8/libgo/go/reflect/value.go
    branches/google/gcc-4_8/libgo/go/syscall/libcall_linux.go
    branches/google/gcc-4_8/libgo/go/syscall/libcall_posix.go
    branches/google/gcc-4_8/libgo/mksysinfo.sh
    branches/google/gcc-4_8/libgo/runtime/go-append.c
    branches/google/gcc-4_8/libgo/runtime/go-callers.c
    branches/google/gcc-4_8/libgo/runtime/go-make-slice.c
    branches/google/gcc-4_8/libgo/runtime/go-nosys.c
    branches/google/gcc-4_8/libgo/runtime/go-signal.c
    branches/google/gcc-4_8/libgomp/ChangeLog
    branches/google/gcc-4_8/libgomp/parallel.c
    branches/google/gcc-4_8/libiberty/ChangeLog
    branches/google/gcc-4_8/libitm/ChangeLog
    branches/google/gcc-4_8/libjava/ChangeLog
    branches/google/gcc-4_8/libjava/classpath/   (props changed)
    branches/google/gcc-4_8/libjava/classpath/ChangeLog
    branches/google/gcc-4_8/libjava/libltdl/ChangeLog
    branches/google/gcc-4_8/libmudflap/ChangeLog
    branches/google/gcc-4_8/libobjc/ChangeLog
    branches/google/gcc-4_8/libquadmath/ChangeLog
    branches/google/gcc-4_8/libsanitizer/ChangeLog
    branches/google/gcc-4_8/libssp/ChangeLog
    branches/google/gcc-4_8/lto-plugin/ChangeLog
    branches/google/gcc-4_8/maintainer-scripts/ChangeLog
    branches/google/gcc-4_8/zlib/ChangeLog

Propchange: branches/google/gcc-4_8/
            ('svn:mergeinfo' modified)

Propchange: branches/google/gcc-4_8/
            ('svnmerge-integrated' modified)

Propchange: branches/google/gcc-4_8/gcc/
            ('svn:mergeinfo' modified)

Propchange: branches/google/gcc-4_8/libjava/classpath/
            ('svn:mergeinfo' modified)



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]