[llvm-commits] CVS: llvm/include/llvm/Constants.h
Alkis Evlogimenos
alkis at cs.uiuc.edu
Wed Aug 4 01:47:32 PDT 2004
Changes in directory llvm/include/llvm:
Constants.h updated: 1.53 -> 1.54
---
Log message:
Remove uneeded getValues() functions.
---
Diffs of the changes: (+0 -8)
Index: llvm/include/llvm/Constants.h
diff -u llvm/include/llvm/Constants.h:1.53 llvm/include/llvm/Constants.h:1.54
--- llvm/include/llvm/Constants.h:1.53 Tue Aug 3 21:42:17 2004
+++ llvm/include/llvm/Constants.h Wed Aug 4 03:47:21 2004
@@ -367,10 +367,6 @@
///
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 @@
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.
More information about the llvm-commits
mailing list