From 1ed7462166f86916fdb1f685291e551c862595d1 Mon Sep 17 00:00:00 2001 From: "whesse@chromium.org" Date: Tue, 28 Jul 2009 14:11:09 +0000 Subject: [PATCH] X64: Fix bug that showed up in mjsunit/invalid-lhs.js Review URL: http://codereview.chromium.org/159506 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2561 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/x64/codegen-x64.cc | 2 +- test/mjsunit/mjsunit.status | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/x64/codegen-x64.cc b/src/x64/codegen-x64.cc index acbc82e..495351e 100644 --- a/src/x64/codegen-x64.cc +++ b/src/x64/codegen-x64.cc @@ -3728,7 +3728,7 @@ void CodeGenerator::LoadReference(Reference* ref) { } else { // Anything else is a runtime error. Load(e); - // frame_->CallRuntime(Runtime::kThrowReferenceError, 1); + frame_->CallRuntime(Runtime::kThrowReferenceError, 1); } in_spilled_code_ = was_in_spilled_code; diff --git a/test/mjsunit/mjsunit.status b/test/mjsunit/mjsunit.status index 687e10c..edc89c1 100644 --- a/test/mjsunit/mjsunit.status +++ b/test/mjsunit/mjsunit.status @@ -92,7 +92,6 @@ debug-ignore-breakpoints: CRASH || FAIL debug-setbreakpoint: CRASH || FAIL debug-step-stub-callfunction: CRASH || FAIL debug-step: CRASH || FAIL -invalid-lhs: PASS || CRASH || FAIL debug-stepin-constructor: CRASH || FAIL debug-stepin-function-call: CRASH || FAIL debug-stepin-accessor: CRASH || FAIL -- 2.7.4