Reviewers: Vyacheslav Egorov, Description: Version 3.0.4.1 Patch change 6100, a fix for r6063, to trunk.
Please review this at http://codereview.chromium.org/6084004/ SVN Base: http://v8.googlecode.com/svn/trunk/ Affected files: M src/code-stubs.h M src/heap.h M src/version.cc Index: src/code-stubs.h =================================================================== --- src/code-stubs.h (revision 6100) +++ src/code-stubs.h (working copy) @@ -47,7 +47,7 @@ V(Compare) \ V(CompareIC) \ V(MathPow) \ - V(TranscendentalCacheSSE2) \ + V(TranscendentalCache) \ V(RecordWrite) \ V(ConvertToDouble) \ V(WriteInt32ToHeapNumber) \ @@ -56,7 +56,6 @@ V(FastNewClosure) \ V(FastNewContext) \ V(FastCloneShallowArray) \ - V(TranscendentalCache) \ V(GenericUnaryOp) \ V(RevertToNumber) \ V(ToBoolean) \ Index: src/heap.h =================================================================== --- src/heap.h (revision 6100) +++ src/heap.h (working copy) @@ -2059,7 +2059,6 @@ friend class ExternalReference; // Inline implementation of the cache. friend class TranscendentalCacheStub; - friend class TranscendentalCacheSSE2Stub; static TranscendentalCache* caches_[kNumberOfCaches]; Element elements_[kCacheSize]; Index: src/version.cc =================================================================== --- src/version.cc (revision 6100) +++ src/version.cc (working copy) @@ -35,7 +35,7 @@ #define MAJOR_VERSION 3 #define MINOR_VERSION 0 #define BUILD_NUMBER 4 -#define PATCH_LEVEL 0 +#define PATCH_LEVEL 1 #define CANDIDATE_VERSION false // Define SONAME to have the SCons build the put a specific SONAME into the -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
