Title: [194249] trunk/Source/_javascript_Core
Revision
194249
Author
[email protected]
Date
2015-12-17 16:48:14 -0800 (Thu, 17 Dec 2015)

Log Message

Unreviewed EFL Build Fix after r194247.

* interpreter/CallFrame.cpp:
(JSC::CallFrame::friendlyFunctionName):
Handle compilers that don't realize the switch handles all cases.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (194248 => 194249)


--- trunk/Source/_javascript_Core/ChangeLog	2015-12-18 00:37:35 UTC (rev 194248)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-12-18 00:48:14 UTC (rev 194249)
@@ -1,3 +1,11 @@
+2015-12-17  Joseph Pecoraro  <[email protected]>
+
+        Unreviewed EFL Build Fix after r194247.
+
+        * interpreter/CallFrame.cpp:
+        (JSC::CallFrame::friendlyFunctionName):
+        Handle compilers that don't realize the switch handles all cases.
+
 2015-12-17  Keith Miller  <[email protected]>
 
         [ES6] Add support for Symbol.hasInstance

Modified: trunk/Source/_javascript_Core/interpreter/CallFrame.cpp (194248 => 194249)


--- trunk/Source/_javascript_Core/interpreter/CallFrame.cpp	2015-12-18 00:37:35 UTC (rev 194248)
+++ trunk/Source/_javascript_Core/interpreter/CallFrame.cpp	2015-12-18 00:48:14 UTC (rev 194249)
@@ -248,6 +248,9 @@
             return getCalculatedDisplayName(this, callee());
         return emptyString();
     }
+
+    ASSERT_NOT_REACHED();
+    return emptyString();
 }
 
 void CallFrame::dump(PrintStream& out)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to