Reviewers: pvalchev, Description: Add missing function CpuFeaturesImpliedByPlatform to OpenBSD platform file
Please review this at http://codereview.chromium.org/465025 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/platform-openbsd.cc Index: src/platform-openbsd.cc =================================================================== --- src/platform-openbsd.cc (revision 3400) +++ src/platform-openbsd.cc (working copy) @@ -83,6 +83,11 @@ } +uint64_t OS::CpuFeaturesImpliedByPlatform() { + return 0; // OpenBSD runs on anything. +} + + double OS::nan_value() { return NAN; } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
