Remove isPooled virtual method from IceOperand.

It doesn't seem to be used?

BUG=none
R=stichnot@chromium.org

Review URL: https://codereview.chromium.org/840343002
diff --git a/src/IceOperand.h b/src/IceOperand.h
index 08aed06..db03bba 100644
--- a/src/IceOperand.h
+++ b/src/IceOperand.h
@@ -75,13 +75,6 @@
       dump(nullptr, Str);
   }
 
-  // Query whether this object was allocated in isolation, or added to
-  // some higher-level pool.  This determines whether a containing
-  // object's destructor should delete this object.  Generally,
-  // constants are pooled globally, variables are pooled per-CFG, and
-  // target-specific operands are not pooled.
-  virtual bool isPooled() const { return false; }
-
   virtual ~Operand() {}
 
 protected: