From: kasperl@chromium.org Date: Mon, 15 Jun 2009 08:25:08 +0000 (+0000) Subject: Fix x64 build. X-Git-Tag: upstream/4.7.83~23917 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a20757d7dc7bac532fade69e6ff41b811a551a3d;p=platform%2Fupstream%2Fv8.git Fix x64 build. Review URL: http://codereview.chromium.org/126114 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2160 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/x64/codegen-x64.cc b/src/x64/codegen-x64.cc index 71b7d54..90504af 100644 --- a/src/x64/codegen-x64.cc +++ b/src/x64/codegen-x64.cc @@ -373,6 +373,10 @@ void CodeGenerator::GenerateObjectEquals(ZoneList* a) { UNIMPLEMENTED(); } +void CodeGenerator::GenerateRandomPositiveSmi(ZoneList* a) { + UNIMPLEMENTED(); +} + void CodeGenerator::GenerateSetValueOf(ZoneList* a) { UNIMPLEMENTED(); } diff --git a/src/x64/codegen-x64.h b/src/x64/codegen-x64.h index a8108f9..fcabc68 100644 --- a/src/x64/codegen-x64.h +++ b/src/x64/codegen-x64.h @@ -524,6 +524,8 @@ class CodeGenerator: public AstVisitor { void GenerateLog(ZoneList* args); + // Fast support for Math.random(). + void GenerateRandomPositiveSmi(ZoneList* args); // Methods and constants for fast case switch statement support. //