aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/Reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bytecode/Reader/Reader.h')
-rw-r--r--lib/Bytecode/Reader/Reader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bytecode/Reader/Reader.h b/lib/Bytecode/Reader/Reader.h
index b881f9d0a5..5fec59e378 100644
--- a/lib/Bytecode/Reader/Reader.h
+++ b/lib/Bytecode/Reader/Reader.h
@@ -22,8 +22,8 @@
#include "llvm/Function.h"
#include "llvm/ModuleProvider.h"
#include "llvm/Bytecode/Analyzer.h"
+#include "llvm/ADT/SmallVector.h"
#include <utility>
-#include <map>
#include <setjmp.h>
namespace llvm {
@@ -228,7 +228,7 @@ protected:
/// @brief Parse a single instruction.
void ParseInstruction(
- std::vector<unsigned>& Args, ///< The arguments to be filled in
+ SmallVector <unsigned, 8>& Args, ///< The arguments to be filled in
BasicBlock* BB ///< The BB the instruction goes in
);