Remove unused-but-set variable from objects.cc.
authorjkummerow@chromium.org <jkummerow@chromium.org>
Mon, 18 Jun 2012 08:28:32 +0000 (08:28 +0000)
committerBert Belder <bertbelder@gmail.com>
Tue, 19 Jun 2012 15:56:51 +0000 (17:56 +0200)
This fixes compilation with newer GCCs.

R=erik.corry@gmail.com

Review URL: https://chromiumcodereview.appspot.com/10568006

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@11838 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

deps/v8/src/objects.cc

index b6cd328528d7f61a12f6e41de68a605b5f49bfeb..ff81131272ccf13d23ccf7e926ca564ee9067809 100644 (file)
@@ -7514,12 +7514,10 @@ MaybeObject* JSObject::OptimizeAsPrototype() {
 
   // Make sure prototypes are fast objects and their maps have the bit set
   // so they remain fast.
-  Map* proto_map = map();
   if (!HasFastProperties()) {
     MaybeObject* new_proto = TransformToFastProperties(0);
     if (new_proto->IsFailure()) return new_proto;
     ASSERT(new_proto == this);
-    proto_map = map();
   }
   return this;
 }