diff options
Diffstat (limited to 'llvm/lib/Bytecode')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.cpp b/llvm/lib/Bytecode/Reader/Reader.cpp index 17d68248f43..e6b9d8f6556 100644 --- a/llvm/lib/Bytecode/Reader/Reader.cpp +++ b/llvm/lib/Bytecode/Reader/Reader.cpp @@ -1147,7 +1147,7 @@ Value *BytecodeReader::ParseConstantPoolValue(unsigned TypeID) { --isExprNumArgs; // FIXME: Encoding of constant exprs could be much more compact! - std::vector<Constant*> ArgVec; + SmallVector<Constant*, 8> ArgVec; ArgVec.reserve(isExprNumArgs); unsigned Opcode = read_vbr_uint(); |