diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-08-04 08:47:21 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-08-04 08:47:21 +0000 |
commit | 3e0ef892799a1841f0ddc5e9b832bef8e8ca41e1 (patch) | |
tree | 80acda1b84467fd9791551544a5738fbc7ae1995 /include/llvm/Constants.h | |
parent | 15876bb28c9c0983279c30a123c13224648574c1 (diff) | |
download | external_llvm-3e0ef892799a1841f0ddc5e9b832bef8e8ca41e1.zip external_llvm-3e0ef892799a1841f0ddc5e9b832bef8e8ca41e1.tar.gz external_llvm-3e0ef892799a1841f0ddc5e9b832bef8e8ca41e1.tar.bz2 |
Remove uneeded getValues() functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15488 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Constants.h')
-rw-r--r-- | include/llvm/Constants.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index 6afaa06..08381aa 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<Use> &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<const StructType*>(Value::getType()); } - /// getValues - Return a vector of the component constants that make up this - /// structure. - inline const std::vector<Use> &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. |