diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-07 05:08:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-07 05:08:39 +0000 |
commit | 5e72c74d5e67ac552f08380b9a797877693f5c67 (patch) | |
tree | ba77baf66a79b41e076dbf4fe941caa2ade72e72 /llvm/lib/Bytecode/Reader/Reader.h | |
parent | 216835d688421a3cabfcaf636e567733ff7c936b (diff) | |
download | bcm5719-llvm-5e72c74d5e67ac552f08380b9a797877693f5c67.tar.gz bcm5719-llvm-5e72c74d5e67ac552f08380b9a797877693f5c67.zip |
Eliminate std::vectors from the bcanalyzer interface.
llvm-svn: 33978
Diffstat (limited to 'llvm/lib/Bytecode/Reader/Reader.h')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.h b/llvm/lib/Bytecode/Reader/Reader.h index b881f9d0a56..5fec59e3788 100644 --- a/llvm/lib/Bytecode/Reader/Reader.h +++ b/llvm/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 ); |