diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-03 19:42:02 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-03 19:42:02 +0000 |
commit | fa5cbd6d0fbda23fd669c8718e07b19001b2d21a (patch) | |
tree | 5875268d45e9e6de6b9a270487eaf3351e39db6d /lib/VMCore | |
parent | 715029478c0a54cab2c366816d11d712bf51efc5 (diff) | |
download | external_llvm-fa5cbd6d0fbda23fd669c8718e07b19001b2d21a.zip external_llvm-fa5cbd6d0fbda23fd669c8718e07b19001b2d21a.tar.gz external_llvm-fa5cbd6d0fbda23fd669c8718e07b19001b2d21a.tar.bz2 |
Even more passes being LLVMContext'd.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74781 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/LLVMContext.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/VMCore/LLVMContext.cpp b/lib/VMCore/LLVMContext.cpp index 6af6ff6..fe2cb7b 100644 --- a/lib/VMCore/LLVMContext.cpp +++ b/lib/VMCore/LLVMContext.cpp @@ -408,7 +408,8 @@ Constant* LLVMContext::getConstantVector(Constant* const* Vals, return ConstantVector::get(Vals, NumVals); } -ConstantVector* LLVMContext::getConstantVectorAllOnes(const VectorType* Ty) { +ConstantVector* LLVMContext::getConstantVectorAllOnesValue( + const VectorType* Ty) { return ConstantVector::getAllOnesValue(Ty); } |