Title: [139867] trunk/Source/ThirdParty/ANGLE
Revision
139867
Author
[email protected]
Date
2013-01-16 03:51:32 -0800 (Wed, 16 Jan 2013)

Log Message

Doesn't build with GCC 4.7+
https://bugs.webkit.org/show_bug.cgi?id=106999

Reviewed by Csaba Osztrogonác.

Correct __GNU_C_MINOR__ macro to __GNUC_MINOR__.

* src/compiler/preprocessor/ExpressionParser.y:

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/ANGLE/ChangeLog (139866 => 139867)


--- trunk/Source/ThirdParty/ANGLE/ChangeLog	2013-01-16 11:30:50 UTC (rev 139866)
+++ trunk/Source/ThirdParty/ANGLE/ChangeLog	2013-01-16 11:51:32 UTC (rev 139867)
@@ -1,3 +1,14 @@
+2013-01-16  Allan Sandfeld Jensen  <[email protected]>
+
+        Doesn't build with GCC 4.7+
+        https://bugs.webkit.org/show_bug.cgi?id=106999
+
+        Reviewed by Csaba Osztrogonác.
+
+        Correct __GNU_C_MINOR__ macro to __GNUC_MINOR__.
+
+        * src/compiler/preprocessor/ExpressionParser.y:
+
 2013-01-15  David Kilzer  <[email protected]>
 
         BUILD FIX: Add SUPPORTED_PLATFORMS to Base.xcconfig

Modified: trunk/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ExpressionParser.y (139866 => 139867)


--- trunk/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ExpressionParser.y	2013-01-16 11:30:50 UTC (rev 139866)
+++ trunk/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ExpressionParser.y	2013-01-16 11:51:32 UTC (rev 139867)
@@ -26,7 +26,7 @@
 // Turn off uninitialized variable warnings triggered by the auto-generated pplval variable.
 // On gcc 4.7+, The flag is called "-Wmaybe-uninitialized".
 // On clang and gcc < 4.7, the flag is called "-Wuninitialized".
-#if !defined(__clang__) && ((__GNUC__ == 4 && __GNU_C_MINOR__ >= 7) || __GNUC__ >= 5)
+#if !defined(__clang__) && ((__GNUC__ == 4 && __GNUC_MINOR__ >= 7) || __GNUC__ >= 5)
 #pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
 #else
 #pragma GCC diagnostic ignored "-Wuninitialized"
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to