Title: [153308] trunk/Source/_javascript_Core
Revision
153308
Author
[email protected]
Date
2013-07-25 03:42:21 -0700 (Thu, 25 Jul 2013)

Log Message

One more buildfix after FTL upstream.

Return a dummy value after RELEASE_ASSERT_NOT_REACHED() to make GCC happy.

* dfg/DFGLazyJSValue.cpp:
(JSC::DFG::LazyJSValue::getValue):
(JSC::DFG::LazyJSValue::strictEqual):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (153307 => 153308)


--- trunk/Source/_javascript_Core/ChangeLog	2013-07-25 10:24:20 UTC (rev 153307)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-07-25 10:42:21 UTC (rev 153308)
@@ -1,3 +1,13 @@
+2013-07-25  Csaba Osztrogonác  <[email protected]>
+
+        One more buildfix after FTL upstream.
+
+        Return a dummy value after RELEASE_ASSERT_NOT_REACHED() to make GCC happy.
+
+        * dfg/DFGLazyJSValue.cpp:
+        (JSC::DFG::LazyJSValue::getValue):
+        (JSC::DFG::LazyJSValue::strictEqual):
+
 2013-07-25  Julien Brianceau  <[email protected]>
 
         Fix "Unhandled opcode localAnnotation" build error in sh4 and mips LLINT.

Modified: trunk/Source/_javascript_Core/dfg/DFGLazyJSValue.cpp (153307 => 153308)


--- trunk/Source/_javascript_Core/dfg/DFGLazyJSValue.cpp	2013-07-25 10:24:20 UTC (rev 153307)
+++ trunk/Source/_javascript_Core/dfg/DFGLazyJSValue.cpp	2013-07-25 10:42:21 UTC (rev 153308)
@@ -43,6 +43,7 @@
         return jsString(&vm, u.stringImpl);
     }
     RELEASE_ASSERT_NOT_REACHED();
+    return value();
 }
 
 static TriState equalToSingleCharacter(JSValue value, UChar character)
@@ -109,6 +110,7 @@
         break;
     }
     RELEASE_ASSERT_NOT_REACHED();
+    return FalseTriState;
 }
 
 void LazyJSValue::dumpInContext(PrintStream& out, DumpContext* context) const
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to