Index: src/compilation-cache.cc |
diff --git a/src/compilation-cache.cc b/src/compilation-cache.cc |
index d8b17a02960159510392bba1e92a9fe528bafdcb..aca8cee9cae861a148be20ffe859752b5e746914 100644 |
--- a/src/compilation-cache.cc |
+++ b/src/compilation-cache.cc |
@@ -124,8 +124,8 @@ bool CompilationCacheScript::HasOrigin(Handle<SharedFunctionInfo> function_info, |
return script->name()->IsUndefined(); |
} |
// Do the fast bailout checks first. |
- if (line_offset != script->line_offset()->value()) return false; |
- if (column_offset != script->column_offset()->value()) return false; |
+ if (line_offset != script->line_offset()) return false; |
+ if (column_offset != script->column_offset()) return false; |
// Check that both names are strings. If not, no match. |
if (!name->IsString() || !script->name()->IsString()) return false; |
// Are the origin_options same? |