diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index 6afaa065927..08381aad98e 100644 --- a/include/llvm/Constants.h +++ b/include/llvm/Constants.h @@ -367,10 +367,6 @@ public: /// std::string getAsString() const; - /// getValues - Return a vector of the component constants that make up this - /// array. - inline const std::vector &getValues() const { return Operands; } - /// isNullValue - Return true if this is the value that would be returned by /// getNullValue. This always returns false because zero arrays are always /// created as ConstantAggregateZero objects. @@ -410,10 +406,6 @@ public: return reinterpret_cast(Value::getType()); } - /// getValues - Return a vector of the component constants that make up this - /// structure. - inline const std::vector &getValues() const { return Operands; } - /// isNullValue - Return true if this is the value that would be returned by /// getNullValue. This always returns false because zero structs are always /// created as ConstantAggregateZero objects.