Fix compile error introduced in 24002.

TBR=mvstanton@chromium.org

Review URL: https://codereview.chromium.org/547293003

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24003 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
yangguo@chromium.org 2014-09-17 13:18:50 +00:00
parent a49ac519c8
commit 2fd6e380ca

View File

@ -1920,7 +1920,7 @@ void CodeSerializer::SerializeCodeStub(Code* code, HowToCode how_to_code,
(how_to_code == kFromCode && where_to_point == kInnerPointer));
uint32_t stub_key = code->stub_key();
if (CodeStub::MajorKeyFromKey(stub_key) == CodeStub::NoCacheKey()) {
if (stub_key == CodeStub::NoCacheKey()) {
if (FLAG_trace_code_serializer) {
PrintF("Encoding uncacheable code stub as heap object\n");
}