aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-07-28 21:19:26 +0000
committerOwen Anderson <resistor@mac.com>2009-07-28 21:19:26 +0000
commitaf7ec975870f92245f1f1484ac80a1e2db6a0afa (patch)
treeb00e71c30dafeea2c63c1b512c0d858e621870fa /include
parente7c329bf4b48ba3a4539183dc2d0804db6f4042a (diff)
downloadexternal_llvm-af7ec975870f92245f1f1484ac80a1e2db6a0afa.zip
external_llvm-af7ec975870f92245f1f1484ac80a1e2db6a0afa.tar.gz
external_llvm-af7ec975870f92245f1f1484ac80a1e2db6a0afa.tar.bz2
Return ConstantVector to 2.5 API.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77366 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Constants.h5
-rw-r--r--include/llvm/LLVMContext.h8
2 files changed, 6 insertions, 7 deletions
diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h
index 442472a..a3bd551 100644
--- a/include/llvm/Constants.h
+++ b/include/llvm/Constants.h
@@ -448,6 +448,11 @@ class ConstantVector : public Constant {
protected:
ConstantVector(const VectorType *T, const std::vector<Constant*> &Val);
public:
+ // ConstantVector accessors
+ static Constant* get(const VectorType* T, const std::vector<Constant*>& V);
+ static Constant* get(const std::vector<Constant*>& V);
+ static Constant* get(Constant* const* Vals, unsigned NumVals);
+
/// Transparently provide more efficient getOperand methods.
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Constant);
diff --git a/include/llvm/LLVMContext.h b/include/llvm/LLVMContext.h
index 03de906..de118aa 100644
--- a/include/llvm/LLVMContext.h
+++ b/include/llvm/LLVMContext.h
@@ -59,6 +59,7 @@ class LLVMContext {
friend class ConstantFP;
friend class ConstantStruct;
friend class ConstantArray;
+ friend class ConstantVector;
public:
LLVMContext();
~LLVMContext();
@@ -160,12 +161,6 @@ public:
///
Constant* getConstantExprSizeOf(const Type* Ty);
- // ConstantVector accessors
- Constant* getConstantVector(const VectorType* T,
- const std::vector<Constant*>& V);
- Constant* getConstantVector(const std::vector<Constant*>& V);
- Constant* getConstantVector(Constant* const* Vals, unsigned NumVals);
-
// MDNode accessors
MDNode* getMDNode(Value* const* Vals, unsigned NumVals);
@@ -211,7 +206,6 @@ public:
void erase(MDString *M);
void erase(MDNode *M);
void erase(ConstantAggregateZero *Z);
- void erase(ConstantVector *V);
};
/// FOR BACKWARDS COMPATIBILITY - Returns a global context.