Title: [244044] trunk/Source/_javascript_Core
Revision
244044
Author
ross.kirsl...@sony.com
Date
2019-04-08 13:57:38 -0700 (Mon, 08 Apr 2019)

Log Message

-f[no-]var-tracking-assignments is GCC-only
https://bugs.webkit.org/show_bug.cgi?id=196699

Reviewed by Don Olmstead.

* CMakeLists.txt:
Just remove the build flag altogether -- it supposedly doesn't solve the problem it was meant to
and said problem evidently no longer occurs as of GCC 9.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/CMakeLists.txt (244043 => 244044)


--- trunk/Source/_javascript_Core/CMakeLists.txt	2019-04-08 20:51:20 UTC (rev 244043)
+++ trunk/Source/_javascript_Core/CMakeLists.txt	2019-04-08 20:57:38 UTC (rev 244044)
@@ -1271,9 +1271,6 @@
     # Avoid using fused multiply-add instructions since this could give different results
     # for e.g. parseInt depending on the platform and compilation flags.
     WEBKIT_ADD_TARGET_CXX_FLAGS(_javascript_Core -ffp-contract=off)
-
-    # Avoid "variable tracking size limit exceeded"
-    set_source_files_properties(builtins/BuiltinNames.cpp PROPERTIES COMPILE_FLAGS -fno-var-tracking-assignments)
 endif ()
 
 WEBKIT_MAKE_FORWARDING_HEADERS(_javascript_Core

Modified: trunk/Source/_javascript_Core/ChangeLog (244043 => 244044)


--- trunk/Source/_javascript_Core/ChangeLog	2019-04-08 20:51:20 UTC (rev 244043)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-04-08 20:57:38 UTC (rev 244044)
@@ -1,3 +1,14 @@
+2019-04-08  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        -f[no-]var-tracking-assignments is GCC-only
+        https://bugs.webkit.org/show_bug.cgi?id=196699
+
+        Reviewed by Don Olmstead.
+
+        * CMakeLists.txt:
+        Just remove the build flag altogether -- it supposedly doesn't solve the problem it was meant to
+        and said problem evidently no longer occurs as of GCC 9.
+
 2019-04-08  Saam Barati  <sbar...@apple.com>
 
         WebAssembly.RuntimeError missing exception check
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to