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 | fa089abebd64bb737dab484c6ce07bc69704e7c7 (patch) | |
| tree | 5875268d45e9e6de6b9a270487eaf3351e39db6d /lib/VMCore | |
| parent | 8e95a09b8f98920cce2e8adadac2113813e096d7 (diff) | |
| download | external_llvm-fa089abebd64bb737dab484c6ce07bc69704e7c7.zip external_llvm-fa089abebd64bb737dab484c6ce07bc69704e7c7.tar.gz external_llvm-fa089abebd64bb737dab484c6ce07bc69704e7c7.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); } |
