Title: [171393] trunk/Source/_javascript_Core
Revision
171393
Author
bfulg...@apple.com
Date
2014-07-22 21:53:54 -0700 (Tue, 22 Jul 2014)

Log Message

Build fix for non-clang compile.

* jsc.cpp:
(WTF::RuntimeArray::deleteProperty): Need (fake) return
value when NO_RETURN_DUE_TO_CRASH is not defined.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (171392 => 171393)


--- trunk/Source/_javascript_Core/ChangeLog	2014-07-23 04:40:55 UTC (rev 171392)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-07-23 04:53:54 UTC (rev 171393)
@@ -1,3 +1,11 @@
+2014-07-22  Brent Fulgham  <bfulg...@apple.com>
+
+        Build fix for non-clang compile.
+
+        * jsc.cpp:
+        (WTF::RuntimeArray::deleteProperty): Need (fake) return
+        value when NO_RETURN_DUE_TO_CRASH is not defined.
+
 2014-07-22  Filip Pizlo  <fpi...@apple.com>
 
         Merge r169628 from ftlopt.

Modified: trunk/Source/_javascript_Core/jsc.cpp (171392 => 171393)


--- trunk/Source/_javascript_Core/jsc.cpp	2014-07-23 04:40:55 UTC (rev 171392)
+++ trunk/Source/_javascript_Core/jsc.cpp	2014-07-23 04:53:54 UTC (rev 171393)
@@ -351,11 +351,17 @@
     static NO_RETURN_DUE_TO_CRASH void put(JSCell*, ExecState*, PropertyName, JSValue, PutPropertySlot&)
     {
         RELEASE_ASSERT_NOT_REACHED();
+#if !COMPILER(CLANG)
+        return true;
+#endif
     }
 
     static NO_RETURN_DUE_TO_CRASH bool deleteProperty(JSCell*, ExecState*, PropertyName)
     {
         RELEASE_ASSERT_NOT_REACHED();
+#if !COMPILER(CLANG)
+        return true;
+#endif
     }
 
     unsigned getLength() const { return m_vector.size(); }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to