Guard GCC version for a pragma ifdef.
authorMartin Liska <mliska@suse.cz>
Fri, 30 Jan 2015 11:57:57 +0000 (12:57 +0100)
committerMartin Liska <marxin@gcc.gnu.org>
Fri, 30 Jan 2015 11:57:57 +0000 (11:57 +0000)
* tree.h: Change GCC_VERSION >= 4004 to GCC_VERSION >= 4006
in #pragma GCC diagnostic guards.

From-SVN: r220280

gcc/ChangeLog
gcc/tree.h

index 6ddbc93bcb0f0645c39c9c8d61b0851a5748b443..a58362ac50440a3473168f3a06519555aad972c8 100644 (file)
@@ -1,3 +1,8 @@
+2015-01-30  Martin Liska  <mliska@suse.cz>
+
+       * tree.h: Change GCC_VERSION >= 4004 to GCC_VERSION >= 4006
+       in #pragma GCC diagnostic guards.
+
 2015-01-30  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/64829
index 6c69fce4f5196d6e1a28720f19af275f471e8f96..c3e9a63e96c22a7a87301811413ca5862466c26b 100644 (file)
@@ -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