Skip to content
Snippets Groups Projects
  • Martin Liska's avatar
    1bac97ad
    libgcov: use proper type for n_functions · 1bac97ad
    Martin Liska authored
    
    gcov_info::n_functions type is initialized by generated
    code in build_info_type:
    
    /* n_functions */
    field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
    		    get_gcov_unsigned_t ());
    
    It uses gcov_unsigned_t, but the struct definition in libgcov.h uses
    unsigned type. That brings troubled on 16-bit targets.
    
    	PR gcov-profile/105535
    
    libgcc/ChangeLog:
    
    	* libgcov.h (struct gcov_info): Use gcov_unsigned_t for
    	n_functions.
    
    Co-Authored-By: default avatarHans-Peter Helfert <peter-helfert@t-online.de>
    1bac97ad
    History
    libgcov: use proper type for n_functions
    Martin Liska authored
    
    gcov_info::n_functions type is initialized by generated
    code in build_info_type:
    
    /* n_functions */
    field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
    		    get_gcov_unsigned_t ());
    
    It uses gcov_unsigned_t, but the struct definition in libgcov.h uses
    unsigned type. That brings troubled on 16-bit targets.
    
    	PR gcov-profile/105535
    
    libgcc/ChangeLog:
    
    	* libgcov.h (struct gcov_info): Use gcov_unsigned_t for
    	n_functions.
    
    Co-Authored-By: default avatarHans-Peter Helfert <peter-helfert@t-online.de>