Title: [174979] trunk/Source/_javascript_Core
- Revision
- 174979
- Author
- [email protected]
- Date
- 2014-10-21 09:48:29 -0700 (Tue, 21 Oct 2014)
Log Message
Add missing ENABLE(FTL_NATIVE_CALL_INLINING) guard to BundlePath.cpp after r174940
https://bugs.webkit.org/show_bug.cgi?id=137924
Patch by Tibor Meszaros <[email protected]> on 2014-10-21
Reviewed by Csaba Osztrogonác.
* runtime/BundlePath.cpp:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (174978 => 174979)
--- trunk/Source/_javascript_Core/ChangeLog 2014-10-21 16:46:13 UTC (rev 174978)
+++ trunk/Source/_javascript_Core/ChangeLog 2014-10-21 16:48:29 UTC (rev 174979)
@@ -1,3 +1,12 @@
+2014-10-21 Tibor Meszaros <[email protected]>
+
+ Add missing ENABLE(FTL_NATIVE_CALL_INLINING) guard to BundlePath.cpp after r174940
+ https://bugs.webkit.org/show_bug.cgi?id=137924
+
+ Reviewed by Csaba Osztrogonác.
+
+ * runtime/BundlePath.cpp:
+
2014-10-21 Dániel Bátyai <[email protected]>
Fix FTL Native Inlining for EFL
Modified: trunk/Source/_javascript_Core/runtime/BundlePath.cpp (174978 => 174979)
--- trunk/Source/_javascript_Core/runtime/BundlePath.cpp 2014-10-21 16:46:13 UTC (rev 174978)
+++ trunk/Source/_javascript_Core/runtime/BundlePath.cpp 2014-10-21 16:48:29 UTC (rev 174979)
@@ -27,6 +27,8 @@
#include "config.h"
#include "BundlePath.h"
+#if ENABLE(FTL_NATIVE_CALL_INLINING)
+
#include <execinfo.h>
#include <string>
@@ -46,3 +48,5 @@
}
} // namespace JSC
+
+#endif // FTL_NATIVE_CALL_INLINING
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes