Reviewers: Yang,
Description:
Merged r10691 into 3.6 branch.
objects: fix template-related linker error
[email protected]
BUG=1936
Please review this at https://chromiumcodereview.appspot.com/9417040/
SVN Base: https://v8.googlecode.com/svn/branches/3.6
Affected files:
M src/objects.cc
M src/version.cc
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index
88ebbf4e9dc1e17c8197b4e0f5315d813a583670..ecd4d0e08be268d418531dafb73bd312dd8ee650
100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -10006,6 +10006,9 @@ template MaybeObject*
Dictionary<SeededNumberDictionaryShape, uint32_t>::AtPut(
template MaybeObject* Dictionary<UnseededNumberDictionaryShape, uint32_t>::
AtPut(uint32_t, Object*);
+template Object* Dictionary<SeededNumberDictionaryShape, uint32_t>::
+ SlowReverseLookup(Object* value);
+
template Object* Dictionary<UnseededNumberDictionaryShape, uint32_t>::
SlowReverseLookup(Object* value);
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index
4d0e24535464a04305440f0eb1854d0361e9b321..dd36faa7c5767c70b78ab188b441520fa7dc1b5a
100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 6
#define BUILD_NUMBER 6
-#define PATCH_LEVEL 20
+#define PATCH_LEVEL 21
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev