Title: [219244] trunk/Source/WTF
Revision
219244
Author
utatane....@gmail.com
Date
2017-07-06 22:33:40 -0700 (Thu, 06 Jul 2017)

Log Message

Unreviewed, Windows build fix after r219233
https://bugs.webkit.org/show_bug.cgi?id=174231

* wtf/Compiler.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (219243 => 219244)


--- trunk/Source/WTF/ChangeLog	2017-07-07 05:22:36 UTC (rev 219243)
+++ trunk/Source/WTF/ChangeLog	2017-07-07 05:33:40 UTC (rev 219244)
@@ -1,5 +1,12 @@
 2017-07-06  Yusuke Suzuki  <utatane....@gmail.com>
 
+        Unreviewed, Windows build fix after r219233
+        https://bugs.webkit.org/show_bug.cgi?id=174231
+
+        * wtf/Compiler.h:
+
+2017-07-06  Yusuke Suzuki  <utatane....@gmail.com>
+
         Unreviewed, build fix after r219238
         https://bugs.webkit.org/show_bug.cgi?id=174081
 

Modified: trunk/Source/WTF/wtf/Compiler.h (219243 => 219244)


--- trunk/Source/WTF/wtf/Compiler.h	2017-07-07 05:22:36 UTC (rev 219243)
+++ trunk/Source/WTF/wtf/Compiler.h	2017-07-07 05:33:40 UTC (rev 219244)
@@ -258,9 +258,11 @@
 
 /* NOT_TAIL_CALLED */
 
-#if !defined(NOT_TAIL_CALLED) && defined(__has_attribute) && __has_attribute(not_tail_called)
+#if !defined(NOT_TAIL_CALLED) && defined(__has_attribute)
+#if __has_attribute(not_tail_called)
 #define NOT_TAIL_CALLED __attribute__((not_tail_called))
 #endif
+#endif
 
 #if !defined(NOT_TAIL_CALLED)
 #define NOT_TAIL_CALLED
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to