diff options
author | Jay Foad <jay.foad@gmail.com> | 2011-06-22 09:24:39 +0000 |
---|---|---|
committer | Jay Foad <jay.foad@gmail.com> | 2011-06-22 09:24:39 +0000 |
commit | 267010864e139781ef5949939e081c41f954de0a (patch) | |
tree | a70c0e226a9540d345c8da8c97e59e402b8e873a /lib/Bitcode/Reader | |
parent | a0c138429e101f573d43740322245c1d5b8b04a0 (diff) | |
download | external_llvm-267010864e139781ef5949939e081c41f954de0a.zip external_llvm-267010864e139781ef5949939e081c41f954de0a.tar.gz external_llvm-267010864e139781ef5949939e081c41f954de0a.tar.bz2 |
Replace the existing forms of ConstantArray::get() with a single form
that takes an ArrayRef.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133615 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Reader')
-rw-r--r-- | lib/Bitcode/Reader/BitcodeReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp index ff67bc9..963791f 100644 --- a/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/lib/Bitcode/Reader/BitcodeReader.cpp @@ -292,7 +292,7 @@ void BitcodeReaderValueList::ResolveConstantForwardRefs() { // Make the new constant. Constant *NewC; if (ConstantArray *UserCA = dyn_cast<ConstantArray>(UserC)) { - NewC = ConstantArray::get(UserCA->getType(), &NewOps[0], NewOps.size()); + NewC = ConstantArray::get(UserCA->getType(), NewOps); } else if (ConstantStruct *UserCS = dyn_cast<ConstantStruct>(UserC)) { NewC = ConstantStruct::get(UserCS->getType(), NewOps); } else if (isa<ConstantVector>(UserC)) { |