Title: [98201] trunk/Source/_javascript_Core
- Revision
- 98201
- Author
- [email protected]
- Date
- 2011-10-23 00:34:08 -0700 (Sun, 23 Oct 2011)
Log Message
Try to fix the SL build.
* dfg/DFGByteCodeParser.cpp:
(JSC::DFG::ByteCodeParser::InlineStackEntry::InlineStackEntry): Cast
away int vs unisgned warning.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (98200 => 98201)
--- trunk/Source/_javascript_Core/ChangeLog 2011-10-23 07:27:47 UTC (rev 98200)
+++ trunk/Source/_javascript_Core/ChangeLog 2011-10-23 07:34:08 UTC (rev 98201)
@@ -1,3 +1,11 @@
+2011-10-23 Geoffrey Garen <[email protected]>
+
+ Try to fix the SL build.
+
+ * dfg/DFGByteCodeParser.cpp:
+ (JSC::DFG::ByteCodeParser::InlineStackEntry::InlineStackEntry): Cast
+ away int vs unisgned warning.
+
2011-10-21 Geoffrey Garen <[email protected]>
Separated string lifetime bits from character buffer state bits
Modified: trunk/Source/_javascript_Core/dfg/DFGByteCodeParser.cpp (98200 => 98201)
--- trunk/Source/_javascript_Core/dfg/DFGByteCodeParser.cpp 2011-10-23 07:27:47 UTC (rev 98200)
+++ trunk/Source/_javascript_Core/dfg/DFGByteCodeParser.cpp 2011-10-23 07:34:08 UTC (rev 98201)
@@ -2334,7 +2334,7 @@
}
for (size_t i = 0; i < m_constantRemap.size(); ++i)
- ASSERT(m_constantRemap[i] >= FirstConstantRegisterIndex);
+ ASSERT(m_constantRemap[i] >= static_cast<unsigned>(FirstConstantRegisterIndex));
byteCodeParser->m_inlineStackTop = this;
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes