1. 04 Mar, 2013 6 commits
  2. 03 Mar, 2013 11 commits
  3. 02 Mar, 2013 3 commits
  4. 01 Mar, 2013 17 commits
  5. 28 Feb, 2013 3 commits
    • runtime: Don't block SIGTRAP while creating a new thread. · 0a2f103a
      Thanks to Uros Bizjak.
      
      From-SVN: r196362
      Ian Lance Taylor committed
    • re PR sanitizer/56454 (need to rename attribute no_address_safety_analysis to no_sanitize_address) · e664c61c
      	PR sanitizer/56454
      	* asan.c (gate_asan): Lookup no_sanitize_address instead of
      	no_address_safety_analysis attribute.
      	* doc/extend.texi (no_address_safety_attribute): Rename to
      	no_sanitize_address attribute, mention no_address_safety_analysis
      	attribute as deprecated alias.
      
      	* c-common.c (handle_no_sanitize_address_attribute): New function.
      	(c_common_attribute_table): Add no_sanitize_address attribute.
      	(handle_no_address_safety_analysis_attribute): Add
      	no_sanitize_address attribute, not no_address_safety_analysis
      	attribute.
      
      	* g++.dg/asan/default-options-1.C (__asan_default_options): Use
      	no_sanitize_address attribute rather than no_address_safety_analysis.
      	* g++.dg/asan/sanitizer_test_utils.h
      	(ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS): Likewise.
      	* c-c++-common/asan/attrib-1.c: Test no_sanitize_address attribute
      	in addition to no_address_safety_analysis.
      
      Co-Authored-By: Jakub Jelinek <jakub@redhat.com>
      
      From-SVN: r196361
      Konstantin Serebryany committed
    • re PR middle-end/56461 (GCC is leaking lots of memory) · 37b5ec8f
      	PR middle-end/56461
      	* tree-vectorizer.h (vect_get_slp_defs): Change 3rd argument
      	type to vec<vec<tree> > *.
      	* tree-vect-slp.c (vect_get_slp_defs): Likewise.  Change vec_defs
      	to be vec<tree> instead of vec<tree> *, set vec_defs
      	to vNULL and call vec_defs.create (number_of_vects), adjust other
      	uses of vec_defs.
      	* tree-vect-stmts.c (vect_get_vec_defs, vectorizable_call,
      	vectorizable_condition): Adjust vect_get_slp_defs callers.
      
      From-SVN: r196360
      Jakub Jelinek committed