Version 3.12.6

Cleaned up hardfp ABI detection for ARM (V8 issue 2140).

Extended TypedArray support in d8.

git-svn-id: http://v8.googlecode.com/svn/trunk@11956 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/objects-inl.h b/src/objects-inl.h
index b334669..074f1ed 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -4798,6 +4798,11 @@
 }
 
 
+Object* JSReceiver::GetConstructor() {
+  return map()->constructor();
+}
+
+
 bool JSReceiver::HasProperty(String* name) {
   if (IsJSProxy()) {
     return JSProxy::cast(this)->HasPropertyWithHandler(name);