Title: [186277] trunk/Source/_javascript_Core
Revision
186277
Author
m...@apple.com
Date
2015-07-03 21:13:00 -0700 (Fri, 03 Jul 2015)

Log Message

Just give up on -Wunreachable-code in _javascript_Core.

* Configurations/Base.xcconfig:
* llint/LowLevelInterpreter.cpp:
(JSC::CLoop::execute):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (186276 => 186277)


--- trunk/Source/_javascript_Core/ChangeLog	2015-07-04 04:11:11 UTC (rev 186276)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-07-04 04:13:00 UTC (rev 186277)
@@ -1,5 +1,13 @@
 2015-07-03  Dan Bernstein  <m...@apple.com>
 
+        Just give up on -Wunreachable-code in _javascript_Core.
+
+        * Configurations/Base.xcconfig:
+        * llint/LowLevelInterpreter.cpp:
+        (JSC::CLoop::execute):
+
+2015-07-03  Dan Bernstein  <m...@apple.com>
+
         Fixed the LLINT CLoop build.
 
         * llint/LowLevelInterpreter.cpp:

Modified: trunk/Source/_javascript_Core/Configurations/Base.xcconfig (186276 => 186277)


--- trunk/Source/_javascript_Core/Configurations/Base.xcconfig	2015-07-04 04:11:11 UTC (rev 186276)
+++ trunk/Source/_javascript_Core/Configurations/Base.xcconfig	2015-07-04 04:13:00 UTC (rev 186277)
@@ -36,7 +36,6 @@
 CLANG_WARN_EMPTY_BODY = YES;
 CLANG_WARN_ENUM_CONVERSION = YES;
 CLANG_WARN_INT_CONVERSION = YES;
-CLANG_WARN_UNREACHABLE_CODE = YES;
 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
 COMBINE_HIDPI_IMAGES = NO;
 DEBUG_INFORMATION_FORMAT = dwarf-with-dsym;

Modified: trunk/Source/_javascript_Core/llint/LowLevelInterpreter.cpp (186276 => 186277)


--- trunk/Source/_javascript_Core/llint/LowLevelInterpreter.cpp	2015-07-04 04:11:11 UTC (rev 186276)
+++ trunk/Source/_javascript_Core/llint/LowLevelInterpreter.cpp	2015-07-04 04:13:00 UTC (rev 186277)
@@ -422,10 +422,7 @@
         // bytecode handlers for the interpreter, as compiled from
         // LowLevelInterpreter.asm and its peers.
 
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wunreachable-code"
         #include "LLIntAssembly.h"
-#pragma clang diagnostic pop
 
         OFFLINE_ASM_GLUE_LABEL(llint_return_to_host)
         {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to