This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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]

Re: [PATCH] Workaround -Wmaybe-uninitialized false positives during profiledbootstrap


On Fri, Jan 30, 2015 at 12:46:43PM +0100, Martin LiÅka wrote:
> There's a small patch that updates the version.
> 
> Ready for trunk?

> 2015-01-30  Martin Liska  <mliska@suse.cz>
> 
> 	* tree.h: Guard GCC version for a pragma ifdef.

	* tree.h: Change GCC_VERSION >= 4004 to GCC_VERSION >= 4006
	in #pragma GCC diagnostic guards.
?

Ok with that change.

> --- a/gcc/tree.h
> +++ b/gcc/tree.h
> @@ -3052,7 +3052,7 @@ tree_int_cst_elt_check (tree __t, int __i,
>  
>  /* Workaround -Wstrict-overflow false positive during profiledbootstrap.  */
>  
> -# if GCC_VERSION >= 4004
> +# if GCC_VERSION >= 4006
>  #pragma GCC diagnostic push
>  #pragma GCC diagnostic ignored "-Wstrict-overflow"
>  #endif
> @@ -3068,7 +3068,7 @@ tree_vec_elt_check (tree __t, int __i,
>    return &CONST_CAST_TREE (__t)->vec.a[__i];
>  }
>  
> -# if GCC_VERSION >= 4004
> +# if GCC_VERSION >= 4006
>  #pragma GCC diagnostic pop
>  #endif
>  
> -- 
> 2.1.2
> 


	Jakub


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