From 42b28e812063435aee6cd6119d62ee08381716f5 Mon Sep 17 00:00:00 2001 From: "kmillikin@chromium.org" Date: Tue, 27 Oct 2009 10:27:08 +0000 Subject: [PATCH] Fix x64 DEBUG build. TBR=lrn@chromium.org Review URL: http://codereview.chromium.org/338042 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3139 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/x64/fast-codegen-x64.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x64/fast-codegen-x64.cc b/src/x64/fast-codegen-x64.cc index 98e04832f..d64fb9238 100644 --- a/src/x64/fast-codegen-x64.cc +++ b/src/x64/fast-codegen-x64.cc @@ -317,7 +317,7 @@ void FastCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) { case ObjectLiteral::Property::GETTER: __ push(rax); Visit(key); - ASSERT(key->location.is_temporary()); + ASSERT(key->location().is_temporary()); __ Push(property->kind() == ObjectLiteral::Property::SETTER ? Smi::FromInt(1) : Smi::FromInt(0)); -- 2.34.1