Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1414)

Unified Diff: src/hydrogen-instructions.h

Issue 552243002: Handle non-object constants in HConstant::GetMonomorphicJSObjectMap. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/mjsunit/regress/regress-412162.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-instructions.h
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
index 1844715dbdf91c7257f964cffd1622b6ab2e9484..1c32400e24b16ec0991cc2235c3e0c50de65ce43 100644
--- a/src/hydrogen-instructions.h
+++ b/src/hydrogen-instructions.h
@@ -3493,7 +3493,7 @@ class HConstant FINAL : public HTemplateInstruction<0> {
virtual Handle<Map> GetMonomorphicJSObjectMap() OVERRIDE {
Handle<Object> object = object_.handle();
- if (object->IsHeapObject()) {
+ if (!object.is_null() && object->IsHeapObject()) {
return v8::internal::handle(HeapObject::cast(*object)->map());
}
return Handle<Map>();
« no previous file with comments | « no previous file | test/mjsunit/regress/regress-412162.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698